mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-18 23:34:15 +01:00
made variable final - checkstyle
Former-commit-id: 00065565e86823a976bdfd37d10891abe11140a2
This commit is contained in:
@@ -306,7 +306,7 @@ public class ArchiveAnalyzer extends AbstractAnalyzer implements Analyzer {
|
|||||||
BufferedOutputStream bos = null;
|
BufferedOutputStream bos = null;
|
||||||
FileOutputStream fos;
|
FileOutputStream fos;
|
||||||
try {
|
try {
|
||||||
File parent = file.getParentFile();
|
final File parent = file.getParentFile();
|
||||||
if (!parent.isDirectory()) {
|
if (!parent.isDirectory()) {
|
||||||
if (!parent.mkdirs()) {
|
if (!parent.mkdirs()) {
|
||||||
final String msg = String.format("Unable to build directory '%s'.", parent.getAbsolutePath());
|
final String msg = String.format("Unable to build directory '%s'.", parent.getAbsolutePath());
|
||||||
|
|||||||
Reference in New Issue
Block a user