Skip to content

Commit cb2b7b6

Browse files
committed
Clarify comment
1 parent 48bb283 commit cb2b7b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/codec/language/DaitchMokotoffSoundex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ private String[] soundex(final String source, final boolean branching) {
456456
if (rules == null) {
457457
continue;
458458
}
459-
// use an EMPTY_LIST to avoid false positive warnings wrt potential null pointer access
459+
// Use an EMPTY_LIST to avoid false positive warnings regarding potential null pointer access.
460460
final List<Branch> nextBranches = branching ? new ArrayList<>() : Collections.emptyList();
461461
for (final Rule rule : rules) {
462462
if (rule.matches(inputContext)) {

0 commit comments

Comments
 (0)