Merge pull request #16904 from igfoo/igfoo/shouldExtract

JS: Remove call to shouldExtract
This commit is contained in:
Erik Krogh Kristensen
2024-07-04 12:44:54 +02:00
committed by GitHub

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