Author: markt
Date: Tue Jun 7 13:20:12 2016
New Revision: 1747225
URL: http://svn.apache.org/viewvc?rev=1747225&view=rev
Log:
Remove debug statements
Modified:
tomcat/trunk/java/org/apache/coyote/http11/Http11InputBuffer.java
Modified: tomcat/trunk/java/org/apache/coyote/http11/Http11InputBuffer.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/Http11InputBuffer.java?rev=1747225&r1=1747224&r2=1747225&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http11/Http11InputBuffer.java (original)
+++ tomcat/trunk/java/org/apache/coyote/http11/Http11InputBuffer.java Tue Jun
7 13:20:12 2016
@@ -322,8 +322,6 @@ public class Http11InputBuffer implement
lastValid = 0;
pos = 0;
- System.out.println("Http11InputBuffer.recycle(): pos [" + pos + "],
lastValid [" + lastValid + "]");
-
lastActiveFilter = -1;
parsingHeader = true;
swallowInput = true;
@@ -355,8 +353,6 @@ public class Http11InputBuffer implement
lastValid = lastValid - pos;
pos = 0;
- System.out.println("Http11InputBuffer.nextRequest(): pos [" + pos +
"], lastValid [" + lastValid + "]");
-
// Recycle filters
for (int i = 0; i <= lastActiveFilter; i++) {
activeFilters[i].recycle();
@@ -636,7 +632,6 @@ public class Http11InputBuffer implement
if (swallowInput && (lastActiveFilter != -1)) {
int extraBytes = (int) activeFilters[lastActiveFilter].end();
pos = pos - extraBytes;
- System.out.println("Http11InputBuffer.endRequest(): pos [" + pos +
"], lastValid [" + lastValid + "]");
(new Exception()).printStackTrace();
}
}
@@ -749,7 +744,6 @@ public class Http11InputBuffer implement
int nRead = wrapper.read(block, buf, pos, buf.length - pos);
if (nRead > 0) {
lastValid = pos + nRead;
- System.out.println("Http11InputBuffer.fill(): pos [" + pos + "],
lastValid [" + lastValid + "]");
return true;
} else if (nRead == -1) {
throw new EOFException(sm.getString("iib.eof.error"));
@@ -1085,7 +1079,6 @@ public class Http11InputBuffer implement
int length = lastValid - pos;
chunk.setBytes(buf, pos, length);
pos = lastValid;
- System.out.println("SocketInputBuffer.doRead(): pos [" + pos + "],
lastValid [" + lastValid + "]");
return length;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]