Author: markt
Date: Fri Dec 12 17:32:49 2014
New Revision: 1644982
URL: http://svn.apache.org/r1644982
Log:
Clean-up. Fix a couple of warnings.
Modified:
tomcat/trunk/test/org/apache/coyote/http11/filters/TesterOutputBuffer.java
Modified:
tomcat/trunk/test/org/apache/coyote/http11/filters/TesterOutputBuffer.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/coyote/http11/filters/TesterOutputBuffer.java?rev=1644982&r1=1644981&r2=1644982&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/coyote/http11/filters/TesterOutputBuffer.java
(original)
+++ tomcat/trunk/test/org/apache/coyote/http11/filters/TesterOutputBuffer.java
Fri Dec 12 17:32:49 2014
@@ -14,7 +14,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
package org.apache.coyote.http11.filters;
import java.io.ByteArrayOutputStream;
@@ -33,21 +32,17 @@ import org.apache.tomcat.util.net.Socket
*/
public class TesterOutputBuffer extends AbstractOutputBuffer<Socket> {
- // ----------------------------------------------------------- Constructors
-
/**
- * Default constructor.
+ * Underlying output stream.
*/
+ private ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
+
+
public TesterOutputBuffer(Response response, int headerBufferSize) {
super(response, headerBufferSize);
outputStreamOutputBuffer = new OutputStreamOutputBuffer();
}
- /**
- * Underlying output stream.
- */
- private ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
-
// --------------------------------------------------------- Public Methods
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]