mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-23 01:29:43 +01:00
made outDir final
Former-commit-id: 0a1354925aac773035aa15b04912c30c585ed243
This commit is contained in:
@@ -193,7 +193,7 @@ public class ReportGenerator {
|
|||||||
OutputStream outputStream = null;
|
OutputStream outputStream = null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
File outDir = new File(outFileName).getParentFile();
|
final File outDir = new File(outFileName).getParentFile();
|
||||||
if (!outDir.exists()) {
|
if (!outDir.exists()) {
|
||||||
outDir.mkdirs();
|
outDir.mkdirs();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user