checkstyle corrections

Former-commit-id: 2326fa7a3cf7e2e478a4fd0edf773a449e8688a6
This commit is contained in:
Jeremy Long
2015-05-10 08:19:03 -04:00
parent ffe64d2f8f
commit 2248380c90

View File

@@ -54,7 +54,7 @@ public final class PomUtils {
public static Model readPom(File file) throws AnalysisException {
Model model = null;
try {
PomParser parser = new PomParser();
final PomParser parser = new PomParser();
model = parser.parse(file);
} catch (PomParseException ex) {
final String msg = String.format("Unable to parse pom '%s'", file.getPath());