summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/io/TeeInputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespajlib/src/main/java/com/yahoo/io/TeeInputStream.java')
-rw-r--r--vespajlib/src/main/java/com/yahoo/io/TeeInputStream.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/io/TeeInputStream.java b/vespajlib/src/main/java/com/yahoo/io/TeeInputStream.java
index 4e8bc2604e2..cf4af87da45 100644
--- a/vespajlib/src/main/java/com/yahoo/io/TeeInputStream.java
+++ b/vespajlib/src/main/java/com/yahoo/io/TeeInputStream.java
@@ -8,6 +8,8 @@ import java.io.IOException;
/**
* Forwards input from a source InputStream while making a copy of it into an outputstream.
* Note that it also does read-ahead and copies up to 64K of data more than was used.
+ *
+ * @author arnej
*/
class TeeInputStream extends InputStream {
final InputStream src;