Deactivated CheckerFramework index checker for deprecated classes

This commit is contained in:
Claudio Maggioni 2023-04-26 11:08:31 +02:00
parent fe2030b459
commit ecb7925340
6 changed files with 1610 additions and 0 deletions

1605
before-refactor.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@ -71,6 +71,7 @@ import org.apache.commons.lang3.StringUtils;
* @deprecated Deprecated as of 1.3, use {@link TextStringBuilder} instead. This class will be removed in 2.0.
*/
@Deprecated
@SuppressWarnings("index") // class is deprecated
public class StrBuilder implements CharSequence, Appendable, Serializable, Builder<String> {
/**

View File

@ -44,6 +44,7 @@ import org.apache.commons.text.lookup.StringLookupFactory;
* @deprecated Deprecated as of 1.3, use {@link StringLookupFactory} instead. This class will be removed in 2.0.
*/
@Deprecated
@SuppressWarnings("index") // class is deprecated
public abstract class StrLookup<V> implements StringLookup {
/**

View File

@ -33,6 +33,7 @@ import org.apache.commons.text.matcher.StringMatcherFactory;
* @deprecated Deprecated as of 1.3, use {@link StringMatcherFactory} instead. This class will be removed in 2.0.
*/
@Deprecated
@SuppressWarnings("index") // class is deprecated
public abstract class StrMatcher {
/**

View File

@ -124,6 +124,7 @@ import org.apache.commons.lang3.Validate;
* @deprecated Deprecated as of 1.3, use {@link StringSubstitutor} instead. This class will be removed in 2.0.
*/
@Deprecated
@SuppressWarnings("index") // class is deprecated
public class StrSubstitutor {
/**

View File

@ -84,6 +84,7 @@ import org.apache.commons.lang3.StringUtils;
* @deprecated Deprecated as of 1.3, use {@link StringTokenizer} instead. This class will be removed in 2.0.
*/
@Deprecated
@SuppressWarnings("index") // class is deprecated
public class StrTokenizer implements ListIterator<String>, Cloneable {
/** Comma separated values tokenizer internal variable. */