Wraps Character methods to be overridden for GWT.
| 8 | |
| 9 | /** Wraps Character methods to be overridden for GWT. */ |
| 10 | final class Characters { |
| 11 | private Characters() {} |
| 12 | |
| 13 | static int toLowerCase(int codePoint) { |
| 14 | return Character.toLowerCase(codePoint); |
| 15 | } |
| 16 | |
| 17 | static int toUpperCase(int codePoint) { |
| 18 | return Character.toUpperCase(codePoint); |
| 19 | } |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…