Skip to content

Commit

Permalink
Remove redundant keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Sep 12, 2024
1 parent 44a317e commit babe180
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public String doubleMetaphone(String value, final boolean alternate) {
final boolean slavoGermanic = isSlavoGermanic(value);
int index = isSilentStart(value) ? 1 : 0;

final DoubleMetaphoneResult result = new DoubleMetaphoneResult(this.getMaxCodeLen());
final DoubleMetaphoneResult result = new DoubleMetaphoneResult(getMaxCodeLen());

while (!result.isComplete() && index <= value.length() - 1) {
switch (value.charAt(index)) {
Expand Down

0 comments on commit babe180

Please sign in to comment.