(String path)
| 34 | private long records = 0; |
| 35 | |
| 36 | public PafReader(String path) throws IOException { |
| 37 | br = getTextFileReader(path); |
| 38 | itr = br.lines().iterator(); |
| 39 | } |
| 40 | |
| 41 | public PafReader(InputStream in) { |
| 42 | br = new BufferedReader(new InputStreamReader(in), BUFFER_SIZE); |
nothing calls this directly
no test coverage detected