File tree 1 file changed +11
-13
lines changed
src/java.base/share/classes/java/lang
1 file changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -35,17 +35,17 @@ int getProperties(int ch) {
35
35
}
36
36
37
37
int getType (int ch ) {
38
- return (ch & 0xFFFE ) == 0xFFFE
39
- ? Character .UNASSIGNED
40
- : Character .PRIVATE_USE ;
38
+ return (ch & 0xFFFE ) == 0xFFFE
39
+ ? Character .UNASSIGNED
40
+ : Character .PRIVATE_USE ;
41
41
}
42
42
43
43
boolean isJavaIdentifierStart (int ch ) {
44
- return false ;
44
+ return false ;
45
45
}
46
46
47
47
boolean isJavaIdentifierPart (int ch ) {
48
- return false ;
48
+ return false ;
49
49
}
50
50
51
51
boolean isUnicodeIdentifierStart (int ch ) {
@@ -85,21 +85,21 @@ boolean isDigit(int ch) {
85
85
}
86
86
87
87
boolean isLowerCase (int ch ) {
88
- return false ;
88
+ return false ;
89
89
}
90
90
91
91
boolean isUpperCase (int ch ) {
92
- return false ;
92
+ return false ;
93
93
}
94
94
95
95
boolean isWhitespace (int ch ) {
96
- return false ;
96
+ return false ;
97
97
}
98
98
99
99
byte getDirectionality (int ch ) {
100
- return (ch & 0xFFFE ) == 0xFFFE
101
- ? Character .DIRECTIONALITY_UNDEFINED
102
- : Character .DIRECTIONALITY_LEFT_TO_RIGHT ;
100
+ return (ch & 0xFFFE ) == 0xFFFE
101
+ ? Character .DIRECTIONALITY_UNDEFINED
102
+ : Character .DIRECTIONALITY_LEFT_TO_RIGHT ;
103
103
}
104
104
105
105
boolean isMirrored (int ch ) {
@@ -109,5 +109,3 @@ boolean isMirrored(int ch) {
109
109
static final CharacterData instance = new CharacterDataPrivateUse ();
110
110
private CharacterDataPrivateUse () {};
111
111
}
112
-
113
-
You can’t perform that action at this time.
0 commit comments