GitHub user arunvinudss opened a pull request:
https://github.com/apache/commons-text/pull/57
TEXT-98: Remove isDelimiter and use HashSets for delimiter checks
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/arunvinudss/commons-t
To be clear, I'd like to use this style (actual example):
private int compareStringOrNull(final String thisString, final String
otherString) {
if (thisString == null) {
if (otherString != null) {
return -1;
}
} else {
if (othe