checkstyle patches

Former-commit-id: 0220c6278809ce9f50fa33f9376b90e54c61b612
This commit is contained in:
Jeremy Long
2014-01-03 14:30:12 -05:00
parent f4928dd0b4
commit e8e951e7ff

View File

@@ -344,7 +344,7 @@ public class Engine {
d.addAnalysisException(ex);
} catch (Throwable ex) {
final String axMsg = String.format("An unexpected error occured during analysis of '%s'", d.getActualFilePath());
AnalysisException ax = new AnalysisException(axMsg, ex);
final AnalysisException ax = new AnalysisException(axMsg, ex);
d.addAnalysisException(ax);
Logger.getLogger(Engine.class.getName()).log(Level.SEVERE, axMsg);
Logger.getLogger(Engine.class.getName()).log(Level.FINE, axMsg, ex);