updated engine to fix bug with archive analyzer prematurely deleting fiels

Former-commit-id: dd4400e3c852f2d9bf7bf3b89f54913be79d6d68
This commit is contained in:
Jeremy Long
2014-03-26 07:33:52 -04:00
parent 83b713a781
commit c8b967ba37

View File

@@ -338,6 +338,12 @@ public class Engine {
}
}
}
}
}
for (AnalysisPhase phase : AnalysisPhase.values()) {
final List<Analyzer> analyzerList = analyzers.get(phase);
for (Analyzer a : analyzerList) {
closeAnalyzer(a);
}
}