(int c)
| 135 | } |
| 136 | |
| 137 | public static boolean isLowerCase(int c) { |
| 138 | return canCastToChar(c) && isLowerCase((char) c); |
| 139 | } |
| 140 | |
| 141 | public static boolean isLowerCase(char c) { |
| 142 | return (c >= 'a' && c <= 'z'); |
nothing calls this directly
no test coverage detected