Merge branch 'GT-0_ghidra1_PR-1906_ryanmkurtz_IgnoreForkFiles'

This commit is contained in:
ghidra1 2020-07-30 13:55:43 -04:00
commit a77dcf7276

View file

@ -161,6 +161,12 @@ public class GModule {
}
}
else {
// Ignore ._ resource fork files
if (child.getName().startsWith("._")) {
continue;
}
if (child.getName().endsWith(extension)) {
accumulator.add(child);
}