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:
parent
5a33586c24
commit
7ad9931d44
|
@ -6417,7 +6417,10 @@ public class StringUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
// The following methods are used to support basic java.lang.String functionality
|
// 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
|
// Used by the indexOf(CharSequence methods) as a green implementation of indexOf
|
||||||
static int indexOfSequence(CharSequence cs, int searchChar, int start) {
|
static int indexOfSequence(CharSequence cs, int searchChar, int start) {
|
||||||
|
|
Loading…
Reference in New Issue