Skip to content

Commit

Permalink
Prevent instances
Browse files Browse the repository at this point in the history
  • Loading branch information
otuncelli committed Jul 29, 2020
1 parent 07b5b47 commit 2929a84
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -117,6 +117,10 @@ public final class Deasciifier {
turkishToggleAccentTable.put('Ş', 'S');
}

private Deasciifier() {
// prevent instances
}

private static char turkishToggleAccent(final char c) {
return turkishToggleAccentTable.containsKey(c) ? turkishToggleAccentTable.get(c) : c;
}
Expand Down

0 comments on commit 2929a84

Please sign in to comment.