(String path, Collection<String> c)
| 171 | } |
| 172 | |
| 173 | public static void fileToStringCollection(String path, Collection<String> c) throws FileNotFoundException, IOException { |
| 174 | BufferedReader br = getTextFileReader(path); |
| 175 | |
| 176 | for (String line; (line = br.readLine()) != null; ) { |
| 177 | c.add(line.trim()); |
| 178 | } |
| 179 | |
| 180 | br.close(); |
| 181 | } |
| 182 | } |
no test coverage detected