You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bi...@apache.org on 2006/03/20 01:19:00 UTC

svn commit: r387083 - /tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java

Author: billbarker
Date: Sun Mar 19 16:18:58 2006
New Revision: 387083

URL: http://svn.apache.org/viewcvs?rev=387083&view=rev
Log:
Remove bogus default for query-string

Modified:
    tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java

Modified: tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java
URL: http://svn.apache.org/viewcvs/tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java?rev=387083&r1=387082&r2=387083&view=diff
==============================================================================
--- tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java (original)
+++ tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java Sun Mar 19 16:18:58 2006
@@ -76,7 +76,6 @@
 
         methodMB.setString("GET");
         uriMB.setString("/");
-        queryMB.setString("");
         protoMB.setString("HTTP/1.0");
 
     }
@@ -486,7 +485,6 @@
         schemeMB.recycle();
         methodMB.setString("GET");
         uriMB.setString("/");
-        queryMB.setString("");
         protoMB.setString("HTTP/1.0");
         //remoteAddrMB.setString("127.0.0.1");
         //remoteHostMB.setString("localhost");



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org