Skip to content

Commit 7ddb03d

Browse files
authored
[javadoc] Fix @deprecated link for StringUtils#endsWithIgnoreCase (#1420)
The wrong Javadoc pointed to Strings.CS where this is a case insensitive operation.
1 parent a337fec commit 7ddb03d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/lang3/StringUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1754,7 +1754,7 @@ public static boolean endsWithAny(final CharSequence sequence, final CharSequenc
17541754
* @see String#endsWith(String)
17551755
* @since 2.4
17561756
* @since 3.0 Changed signature from endsWithIgnoreCase(String, String) to endsWithIgnoreCase(CharSequence, CharSequence)
1757-
* @deprecated Use {@link Strings#endsWith(CharSequence, CharSequence) Strings.CS.endsWith(CharSequence, CharSequence)}
1757+
* @deprecated Use {@link Strings#endsWith(CharSequence, CharSequence) Strings.CI.endsWith(CharSequence, CharSequence)}
17581758
*/
17591759
@Deprecated
17601760
public static boolean endsWithIgnoreCase(final CharSequence str, final CharSequence suffix) {

0 commit comments

Comments
 (0)