Cleanup inappropriate @throws javadoc of some AsciiString util methods
This commit is contained in:
parent
b3fa976028
commit
b4e5965424
@ -1690,7 +1690,6 @@ public final class AsciiString implements CharSequence, Comparable<CharSequence>
|
|||||||
* @param startPos the start position, negative treated as zero
|
* @param startPos the start position, negative treated as zero
|
||||||
* @return the first index of the search CharSequence (always ≥ startPos),
|
* @return the first index of the search CharSequence (always ≥ startPos),
|
||||||
* -1 if no match or {@code null} string input
|
* -1 if no match or {@code null} string input
|
||||||
* @throws NullPointerException if {@code cs} or {@code string} is {@code null}.
|
|
||||||
*/
|
*/
|
||||||
public static int indexOfIgnoreCase(final CharSequence str, final CharSequence searchStr, int startPos) {
|
public static int indexOfIgnoreCase(final CharSequence str, final CharSequence searchStr, int startPos) {
|
||||||
if (str == null || searchStr == null) {
|
if (str == null || searchStr == null) {
|
||||||
@ -1744,7 +1743,6 @@ public final class AsciiString implements CharSequence, Comparable<CharSequence>
|
|||||||
* @param startPos the start position, negative treated as zero
|
* @param startPos the start position, negative treated as zero
|
||||||
* @return the first index of the search CharSequence (always ≥ startPos),
|
* @return the first index of the search CharSequence (always ≥ startPos),
|
||||||
* -1 if no match or {@code null} string input
|
* -1 if no match or {@code null} string input
|
||||||
* @throws NullPointerException if {@code cs} or {@code string} is {@code null}.
|
|
||||||
*/
|
*/
|
||||||
public static int indexOfIgnoreCaseAscii(final CharSequence str, final CharSequence searchStr, int startPos) {
|
public static int indexOfIgnoreCaseAscii(final CharSequence str, final CharSequence searchStr, int startPos) {
|
||||||
if (str == null || searchStr == null) {
|
if (str == null || searchStr == null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user