Skip to content

Commit

Permalink
put the comment back in the code for ignoring ch if no condition is met
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost committed Nov 4, 2024
1 parent 22fee69 commit e59d94b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/org/apache/commons/lang3/text/WordUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,8 @@ public static String initials(final String str, final char... delimiters) {
buf[count++] = ch;
lastWasGap = false;
}

// ignore ch
}
return new String(buf, 0, count);
}
Expand Down

0 comments on commit e59d94b

Please sign in to comment.