(Path dir)
| 176 | } |
| 177 | |
| 178 | public static Iterator<Path> dirIterator(Path dir) { |
| 179 | return dir.iterator(); |
| 180 | } |
| 181 | |
| 182 | public static Stream<Path> dirStream(Path dir) throws IOException { |
| 183 | return Files.list(dir); |
nothing calls this directly
no outgoing calls
no test coverage detected