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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org