()
| 506 | } |
| 507 | |
| 508 | private void consumeWS() { |
| 509 | for (; ; get().nextChar()) { if (!get().peekOneOf(whiteSpace)) { return; } } |
| 510 | } |
| 511 | |
| 512 | private static boolean isCharMatch(boolean iCase, char ch1, char ch2) { |
| 513 | return (iCase) ? Character.toUpperCase(ch1) == Character.toUpperCase(ch2) : (ch1 == ch2); |