Checks if the given character is a whitespace character. @param c the character to check @return true if the character is a space, tab, newline, or carriage return
(char c)
| 374 | * @return true if the character is a space, tab, newline, or carriage return |
| 375 | */ |
| 376 | protected boolean isSpace(char c) { |
| 377 | return c == ' ' || c == '\n' || c == '\t' || c == '\r'; |
| 378 | } |
| 379 | |
| 380 | /** |
| 381 | * Checks if the given character is a quote character. |
no outgoing calls
no test coverage detected