RED-5562 japanse space characters - fixed PMD
This commit is contained in:
parent
1ce47b7fbc
commit
20ab65afd2
@ -19,7 +19,7 @@ public class SeparatorUtils {
|
|||||||
|
|
||||||
public static boolean isJapaneseSeparator(char c) {
|
public static boolean isJapaneseSeparator(char c) {
|
||||||
var intValue = (int) c;
|
var intValue = (int) c;
|
||||||
return (intValue >= 12288 && intValue <= 12336) || japaneseAltPunctuationMarks.contains(intValue);
|
return intValue >= 12288 && intValue <= 12336 || japaneseAltPunctuationMarks.contains(intValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user