(Collection<Path> inputDirs, InputFile inputFile)
| 124 | } |
| 125 | |
| 126 | public static Path resolvePath(Collection<Path> inputDirs, InputFile inputFile) throws IOException { |
| 127 | List<Path> ret = resolvePaths(inputDirs, Collections.singletonList(inputFile)); |
| 128 | |
| 129 | return ret.get(0); |
| 130 | } |
| 131 | |
| 132 | public static List<Path> resolvePaths(Collection<Path> inputDirs, Collection<InputFile> inputFiles) throws IOException { |
| 133 | List<Path> ret = new ArrayList<>(inputFiles.size()); |
nothing calls this directly
no test coverage detected