From 8ee8731650b13f93d3daa5828aa200a7890371a0 Mon Sep 17 00:00:00 2001 From: markt Date: Mon, 17 May 2010 10:29:04 +0000 Subject: [PATCH] Fix comments git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@945067 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/tomcat/util/buf/ByteChunk.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/java/org/apache/tomcat/util/buf/ByteChunk.java b/java/org/apache/tomcat/util/buf/ByteChunk.java index 5a1d48202..414829e34 100644 --- a/java/org/apache/tomcat/util/buf/ByteChunk.java +++ b/java/org/apache/tomcat/util/buf/ByteChunk.java @@ -737,7 +737,7 @@ public final class ByteChunk implements Cloneable, Serializable { * starting at the specified byte. If the character is not found, -1 is * returned. *
- * 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 Cloneable, Serializable { * Returns the first instance of the given character in the given byte array * between the specified start and end. *
- * 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 Cloneable, Serializable { * Returns the first instance of the given character in the given byte array * between the specified start and end. *
- * 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 Cloneable, Serializable { * Returns the first instance of any of the given characters in the given * byte array between the specified start and end. *
- * 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 Cloneable, Serializable { * character array in the specified byte array between the specified start * and end. *
- * 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 -- 2.11.0