(InputStream in)
| 481 | } |
| 482 | |
| 483 | public void parse(InputStream in) throws Exception { |
| 484 | final BufferedReader br = new BufferedReader(new InputStreamReader(in)); |
| 485 | parse(br.lines()); |
| 486 | } |
| 487 | |
| 488 | public void parse(List<String> lines) { |
| 489 | parse(lines.stream()); |
no test coverage detected