Skip to content

Commit 801afd9

Browse files
committed
eprecate unused constant org.apache.commons.codec.language.bm.Rule.ALL
1 parent e3b840f commit 801afd9

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ The <action> type attribute can be add,update,fix,remove.
5555
<action type="fix" dev="ggregory" due-to="Gary Gregory">Precompile regular expressions in org.apache.commons.codec.language.bm.Rule.parse*(*).</action>
5656
<action type="fix" dev="ggregory" due-to="Gary Gregory">Remove redundant checks for whitespace in DaitchMokotoffSoundex.soundex(String, boolean).</action>
5757
<action type="fix" dev="ggregory" due-to="Sebastian Baunsgaard">Javadoc typo in Base16.java #380.</action>
58+
<action type="fix" dev="ggregory" due-to="Gary Gregory">Deprecate unused constant org.apache.commons.codec.language.bm.Rule.ALL.</action>
5859
<!-- ADD -->
5960
<action type="add" dev="ggregory" due-to="Gary Gregory">Add HmacUtils.hmac(Path).</action>
6061
<action type="add" dev="ggregory" due-to="Gary Gregory">Add HmacUtils.hmacHex(Path).</action>

src/main/java/org/apache/commons/codec/language/bm/Rule.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,12 @@ public interface RPattern {
281281

282282
/**
283283
* Unused.
284+
*
285+
* @deprecated This is unused.
284286
*/
287+
@Deprecated
285288
public static final String ALL = "ALL";
289+
286290
private static final String DOUBLE_QUOTE = "\"";
287291
private static final String HASH_INCLUDE = "#include";
288292
private static final int HASH_INCLUDE_LENGTH = HASH_INCLUDE.length();

0 commit comments

Comments
 (0)