You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2011/11/17 07:38:09 UTC

svn commit: r1203078 - /tomcat/trunk/java/org/apache/tomcat/util/buf/UDecoder.java

Author: kkolinko
Date: Thu Nov 17 06:38:08 2011
New Revision: 1203078

URL: http://svn.apache.org/viewvc?rev=1203078&view=rev
Log:
Correct typo in a comment

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/buf/UDecoder.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/buf/UDecoder.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/buf/UDecoder.java?rev=1203078&r1=1203077&r2=1203078&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/buf/UDecoder.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/buf/UDecoder.java Thu Nov 17 06:38:08 2011
@@ -87,7 +87,7 @@ public final class UDecoder {
             return;
         }
 
-        // idx will be the smallest positive indexes ( first % or + )
+        // idx will be the smallest positive index ( first % or + )
         if( (idx2 >= 0 && idx2 < idx) || idx < 0 ) {
             idx=idx2;
         }
@@ -155,6 +155,7 @@ public final class UDecoder {
             return;
         }
 
+        // idx will be the smallest positive index ( first % or + )
         if( (idx2 >= 0 && idx2 < idx) || idx < 0 ) {
             idx=idx2;
         }



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