Author: markt Date: Mon May 17 10:29:04 2010 New Revision: 945067 URL: http://svn.apache.org/viewvc?rev=945067&view=rev Log: Fix comments
Modified: tomcat/trunk/java/org/apache/tomcat/util/buf/ByteChunk.java Modified: tomcat/trunk/java/org/apache/tomcat/util/buf/ByteChunk.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/buf/ByteChunk.java?rev=945067&r1=945066&r2=945067&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/buf/ByteChunk.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/buf/ByteChunk.java Mon May 17 10:29:04 2010 @@ -737,7 +737,7 @@ public final class ByteChunk implements * starting at the specified byte. If the character is not found, -1 is * returned. * <br/> - * NOTE: This only works for single byte characters. + * NOTE: This only works for characters in the range 0-127. * * @param c The character * @param starting The start position @@ -753,7 +753,7 @@ public final class ByteChunk implements * Returns the first instance of the given character in the given byte array * between the specified start and end. * <br/> - * NOTE: This only works for single byte characters. + * NOTE: This only works for characters in the range 0-127. * * @param bytes The byte array to search * @param start The point to start searching from in the byte array @@ -778,7 +778,7 @@ public final class ByteChunk implements * Returns the first instance of the given character in the given byte array * between the specified start and end. * <br/> - * NOTE: This only works for single byte characters. + * NOTE: This only works for characters in the range 0-127. * * @param bytes The byte array to search * @param start The point to start searching from in the byte array @@ -795,7 +795,7 @@ public final class ByteChunk implements * Returns the first instance of any of the given characters in the given * byte array between the specified start and end. * <br/> - * NOTE: This only works for single byte characters. + * NOTE: This only works for characters in the range 0-127. * * @param bytes The byte array to search * @param start The point to start searching from in the byte array @@ -822,7 +822,7 @@ public final class ByteChunk implements * character array in the specified byte array between the specified start * and end. * <br/> - * NOTE: This only works for single byte characters. + * NOTE: This only works for characters in the range 0-127. * * @param bytes The byte array to search * @param start The point to start searching from in the byte array --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org