Skip to content

Commit

Permalink
Deprecate CharSequenceUtils.CharSequenceUtils()
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 28, 2024
1 parent 6921f98 commit 1b815fe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ The <action> type attribute can be add,update,fix,remove.
<!-- FIX -->
<action type="fix" dev="ggregory" due-to="Gary Gregory">Rewrite DaitchMokotoffSoundex.soundex(String) using String.join().</action>
<action type="fix" issue="CODEC-324" dev="ggregory" due-to="Michael Froh">Use Resource.class to load resources, rather than its class loader #353.</action>
<action type="fix" dev="ggregory" due-to="Gary Gregory">Deprecate CharSequenceUtils.CharSequenceUtils().</action>
<!-- ADD -->
<!-- UPDATE -->
<action type="update" dev="ggregory" due-to="Dependabot">Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.17.0 #296, #305, #313.</action>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@
*/
public class CharSequenceUtils {

/**
* Consider package-private.
*
* @deprecated Will be package-private in the next major version.
*/
@Deprecated
public CharSequenceUtils() {
// empty
}

/**
* Green implementation of regionMatches.
*
Expand Down

0 comments on commit 1b815fe

Please # to comment.