updated engine to fix bug with archive analyzer prematurely deleting fiels

Former-commit-id: f123c77c3e111291d8e8064b31de2dacca3907fe
This commit is contained in:
Jeremy Long
2014-03-26 07:33:52 -04:00
parent 6b586684e6
commit 38e27309fb

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