made outDir final

Former-commit-id: 7987673433e91d54efa138bfafd7fbe1a22ee089
This commit is contained in:
Jeremy Long
2013-05-20 22:54:35 -04:00
parent a939d0c844
commit 250444dd25

View File

@@ -193,7 +193,7 @@ public class ReportGenerator {
OutputStream outputStream = null;
try {
File outDir = new File(outFileName).getParentFile();
final File outDir = new File(outFileName).getParentFile();
if (!outDir.exists()) {
outDir.mkdirs();
}