MCPcopy Create free account
hub / github.com/FabricMC/Matcher / resolvePath

Method resolvePath

src/main/java/matcher/Matcher.java:126–130  ·  view source on GitHub ↗
(Collection<Path> inputDirs, InputFile inputFile)

Source from the content-addressed store, hash-verified

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());

Callers

nothing calls this directly

Calls 2

resolvePathsMethod · 0.95
getMethod · 0.45

Tested by

no test coverage detected