(int start, int end)
| 662 | } |
| 663 | |
| 664 | public int codePointCount(int start, int end) { |
| 665 | return Character.codePointCount(this, start, end); |
| 666 | } |
| 667 | |
| 668 | public String toUpperCase(Locale locale) { |
| 669 | if (locale == Locale.ENGLISH) { |
nothing calls this directly
no test coverage detected