BAEL-6705: Fixed typo (#15015)

This commit is contained in:
Eugene Kovko 2023-10-31 16:21:05 +01:00 committed by GitHub
parent 6e25eb35cc
commit 036369c792
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public class AlphanumericPerformanceBenchmark {
public boolean isAlphanumeric(final int codePoint) {
return (codePoint >= 65 && codePoint <= 90) ||
(codePoint >= 97 && codePoint <= 172) ||
(codePoint >= 97 && codePoint <= 122) ||
(codePoint >= 48 && codePoint <= 57);
}
}