summaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/handler/BufferedContentChannel.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-10-27 14:18:58 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2017-10-27 14:18:58 +0200
commit704131deda2614516bff5329802c61fe4526a834 (patch)
treeb7b2af4b0e4bc569895a7ec87053ebab5697a3d1 /jdisc_core/src/main/java/com/yahoo/jdisc/handler/BufferedContentChannel.java
parent5fcbb66f52d44b286f0898ab318f7e6269330f4e (diff)
Nonfunctional changes only
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/handler/BufferedContentChannel.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/handler/BufferedContentChannel.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/handler/BufferedContentChannel.java b/jdisc_core/src/main/java/com/yahoo/jdisc/handler/BufferedContentChannel.java
index a93e4430d20..406ee0ff6e5 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/handler/BufferedContentChannel.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/handler/BufferedContentChannel.java
@@ -7,12 +7,12 @@ import java.util.List;
import java.util.Objects;
/**
- * <p>This class implements an unlimited, non-blocking content queue. All {@link ContentChannel} methods are implemented
+ * This class implements an unlimited, non-blocking content queue. All {@link ContentChannel} methods are implemented
* by pushing to a thread-safe internal queue. All of the queued calls are forwarded to another ContentChannel when
* {@link #connectTo(ContentChannel)} is called. Once connected, this class becomes a non-buffering proxy for the
- * connected ContentChannel.</p>
+ * connected ContentChannel.
*
- * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
+ * @author Simon Thoresen
*/
public final class BufferedContentChannel implements ContentChannel {
@@ -153,4 +153,5 @@ public final class BufferedContentChannel implements ContentChannel {
this.buf = buf;
}
}
+
}