From a0daf9edc9a0f4d275fca0de2c47e25b1b21bd2b Mon Sep 17 00:00:00 2001 From: Matt Tucker Date: Mon, 18 Aug 2003 15:14:09 +0000 Subject: [PATCH] Removed HTML markup in Javadoc. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2032 b35dd754-fafc-0310-a699-88a17e54d16e --- .../org/jivesoftware/smackx/packet/Time.java | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/source/org/jivesoftware/smackx/packet/Time.java b/source/org/jivesoftware/smackx/packet/Time.java index 196e8f214..0e8305673 100644 --- a/source/org/jivesoftware/smackx/packet/Time.java +++ b/source/org/jivesoftware/smackx/packet/Time.java @@ -14,24 +14,23 @@ import java.text.DateFormat; * following code snippet: * *
- * // Request the time from a remote user.
- * Time timeRequest = new Time();
+ * // Request the time from a remote user.
+ * Time timeRequest = new Time();
  * timeRequest.setType(IQ.Type.GET);
- * timeRequest.setTo("someUser@example.com");
-
- *  
- * // Create a packet collector to listen for a response.
+ * timeRequest.setTo(someUser@example.com);
+ *
+ * // Create a packet collector to listen for a response.
  * PacketCollector collector = con.createPacketCollector(
- *                new PacketIDFilter(timeRequest.getPacketID()));
- *  
+ *                new PacketIDFilter(timeRequest.getPacketID()));
+ *
  * con.sendPacket(timeRequest);
- *  
- * // Wait up to 5 seconds for a result.
+ *
+ * // Wait up to 5 seconds for a result.
  * IQ result = (IQ)collector.nextResult(5000);
- * if (result != null && result.getType() == IQ.Type.RESULT) {
+ * if (result != null && result.getType() == IQ.Type.RESULT) {
  *     Time timeResult = (Time)result;
- *     // Do something with result...
- * }

+ * // Do something with result... + * }

* * Warning: this is an non-standard protocol documented by * JEP-90. Because this is a