(PushbackReader r, int ch)
| 72 | } |
| 73 | |
| 74 | static void unread(PushbackReader r, int ch) { |
| 75 | if(ch != -1) |
| 76 | try |
| 77 | { |
| 78 | r.unread(ch); |
| 79 | } |
| 80 | catch(IOException e) |
| 81 | { |
| 82 | throw Util.sneakyThrow(e); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | public static class ReaderException extends RuntimeException{ |
| 87 | final int line; |
no test coverage detected