Adding comment on the hidden (for now) methods

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1082416 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-03-17 06:59:15 +00:00
parent 5a33586c24
commit 7ad9931d44
1 changed files with 4 additions and 1 deletions

View File

@ -6417,7 +6417,10 @@ public static CharSequence subSequence(CharSequence cs, int start) {
}
// The following methods are used to support basic java.lang.String functionality
// for CharSequences
// for CharSequences. Currently keeping these as package private; they may be
// useful as public methods so others can also support CharSequence instead of
// String. At that point they may make more sense on a CharSequenceUtils and
// will want a name change.
// Used by the indexOf(CharSequence methods) as a green implementation of indexOf
static int indexOfSequence(CharSequence cs, int searchChar, int start) {