(Path path)
| 208 | } |
| 209 | |
| 210 | public static BufferedReader readReader(Path path) throws IOException { |
| 211 | return Files.newBufferedReader(path); |
| 212 | } |
| 213 | |
| 214 | public static Path writeStrings(Path path, List<String> stringList, boolean append) throws IOException { |
| 215 | OpenOption[] options = append ? WRITE_CREATE_APPEND : WRITE_CREATE; |
nothing calls this directly
no outgoing calls
no test coverage detected