8263091: Remove CharacterData.isOtherUppercase/-Lowercase

Reviewed-by: rriggs, naoto, iris
This commit is contained in:
Claes Redestad 2021-03-08 10:34:57 +00:00
parent 13625bebd0
commit a0c3f24218
8 changed files with 27 additions and 97 deletions

View file

@ -54,14 +54,6 @@ abstract class CharacterData {
return null;
}
boolean isOtherLowercase(int ch) {
return false;
}
boolean isOtherUppercase(int ch) {
return false;
}
boolean isOtherAlphabetic(int ch) {
return false;
}