JS: Remove call to shouldExtract

It always returns true nowadays.
This commit is contained in:
Ian Lynagh
2024-07-04 09:42:07 +01:00
parent 8defd27b49
commit 95a418aa14

View File

@@ -527,7 +527,6 @@ public class Main {
// extract files that are supported, match the layout (if any), pass the includeMatcher,
// and do not pass the excludeMatcher
if (fileExtractor.supports(root)
&& extractorOutputConfig.shouldExtract(root)
&& (explicit || includeMatcher.matches(path) && !excludeMatcher.matches(path))) {
files.add(normalizeFile(root));
}