(int toMatch, String messageId, boolean ignoreComment)
| 516 | } |
| 517 | |
| 518 | private boolean mustMatchToken(int toMatch, String messageId, boolean ignoreComment) |
| 519 | throws IOException { |
| 520 | return mustMatchToken( |
| 521 | toMatch, messageId, ts.tokenBeg, ts.tokenEnd - ts.tokenBeg, ignoreComment); |
| 522 | } |
| 523 | |
| 524 | private boolean mustMatchToken( |
| 525 | int toMatch, String msgId, int pos, int len, boolean ignoreComment) throws IOException { |
no test coverage detected