From c890f61d0b7e2de6a9915e35fc48268f05186c3e Mon Sep 17 00:00:00 2001 From: zzz Date: Sun, 14 Nov 2010 15:01:52 +0000 Subject: [PATCH] javadoc --- core/java/src/net/i2p/util/EepHead.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/java/src/net/i2p/util/EepHead.java b/core/java/src/net/i2p/util/EepHead.java index c3a17bbea5..5c0d9c8fc2 100644 --- a/core/java/src/net/i2p/util/EepHead.java +++ b/core/java/src/net/i2p/util/EepHead.java @@ -10,7 +10,7 @@ import net.i2p.I2PAppContext; /** * This is a quick hack to get a working EepHead, primarily for the following usage: - * + *
  * EepHead foo = new EepHead(...);
  * if (foo.fetch()) {
  *     String lastmod = foo.getLastModified();
@@ -19,12 +19,14 @@ import net.i2p.I2PAppContext;
  *         ...
  *     }
  * }
- *
+ * 
* Other use cases (command line, listeners, etc...) lightly- or un-tested. + * Note that this follows redirects! This may not be what you want or expect. * * Writing from scratch rather than extending EepGet would maybe have been less bloated memory-wise. * This way gets us redirect handling, among other benefits. * + * @since 0.7.7 * @author zzz */ public class EepHead extends EepGet {