From 2248380c907b810315522de8dcb2c3872a41e3db Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Sun, 10 May 2015 08:19:03 -0400 Subject: [PATCH] checkstyle corrections Former-commit-id: 2326fa7a3cf7e2e478a4fd0edf773a449e8688a6 --- .../main/java/org/owasp/dependencycheck/xml/pom/PomUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/xml/pom/PomUtils.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/xml/pom/PomUtils.java index 7babf6a73..8ee3f2980 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/xml/pom/PomUtils.java +++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/xml/pom/PomUtils.java @@ -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());