(Path path)
| 192 | } |
| 193 | |
| 194 | public static Stream<String> readStream(Path path) throws IOException { |
| 195 | return Files.lines(path); |
| 196 | } |
| 197 | |
| 198 | public static List<String> readStrings(Path path) throws IOException { |
| 199 | return Files.readAllLines(path); |
nothing calls this directly
no outgoing calls
no test coverage detected