made variable final - checkstyle

Former-commit-id: 00065565e86823a976bdfd37d10891abe11140a2
This commit is contained in:
Jeremy Long
2014-01-25 11:04:49 -05:00
parent 696c7d0e21
commit 9256341c70

View File

@@ -306,7 +306,7 @@ public class ArchiveAnalyzer extends AbstractAnalyzer implements Analyzer {
BufferedOutputStream bos = null;
FileOutputStream fos;
try {
File parent = file.getParentFile();
final File parent = file.getParentFile();
if (!parent.isDirectory()) {
if (!parent.mkdirs()) {
final String msg = String.format("Unable to build directory '%s'.", parent.getAbsolutePath());