(Path path)
| 75 | } |
| 76 | |
| 77 | public static boolean canRead(Path path) { |
| 78 | return Files.isReadable(path); |
| 79 | } |
| 80 | |
| 81 | public static boolean canWrite(Path path) { |
| 82 | return Files.isWritable(path); |
nothing calls this directly
no outgoing calls
no test coverage detected