(Path path)
| 200 | } |
| 201 | |
| 202 | public static byte[] readBytes(Path path) throws IOException { |
| 203 | return Files.readAllBytes(path); |
| 204 | } |
| 205 | |
| 206 | public static InputStream readInputStream(Path path) throws IOException { |
| 207 | return Files.newInputStream(path, READ); |
nothing calls this directly
no outgoing calls
no test coverage detected