You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2012/09/03 13:38:50 UTC

svn commit: r1380211 - /jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/StreamCopier.java

Author: pmouawad
Date: Mon Sep  3 11:38:50 2012
New Revision: 1380211

URL: http://svn.apache.org/viewvc?rev=1380211&view=rev
Log:
javadocs + since
Bugzilla Id: 53168

Modified:
    jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/StreamCopier.java

Modified: jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/StreamCopier.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/StreamCopier.java?rev=1380211&r1=1380210&r2=1380211&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/StreamCopier.java (original)
+++ jmeter/trunk/src/protocol/native/org/apache/jmeter/protocol/system/StreamCopier.java Mon Sep  3 11:38:50 2012
@@ -28,6 +28,7 @@ import org.apache.log.Logger;
 
 /**
  * Thread that copies a stream in the background; closes both input and output streams.
+ * @since 2.8
  */
 class StreamCopier extends Thread {
 
@@ -37,7 +38,8 @@ class StreamCopier extends Thread {
     private final OutputStream os;
 
 	/**
-	 * @param is {@link InputStream}
+     * @param is {@link InputStream}
+	 * @param is {@link OutputStream}
 	 * @throws IOException 
 	 */
 	StreamCopier(InputStream is, OutputStream os) throws IOException {