This is used in place of Character.isLetter(), since the latter also supports unicode letters. @param c @return
(char c)
| 508 | * @return |
| 509 | */ |
| 510 | private boolean isLetter(char c) { |
| 511 | return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') ; |
| 512 | } |
| 513 | |
| 514 | /** |
| 515 | * This is used in place of Character.isLetterOrDigit(), since the latter also |
no outgoing calls
no test coverage detected