checkstyle patches

Former-commit-id: 68937bbf5b92b8168b2eeae6ced056ec4deafb72
This commit is contained in:
Jeremy Long
2014-01-03 14:30:12 -05:00
parent b5c67a47d1
commit ec16d9abfc

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