mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-24 18:11:47 +01:00
made outDir final
Former-commit-id: 7987673433e91d54efa138bfafd7fbe1a22ee089
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