mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-25 18:41:44 +01:00
minor changes to comply with checkstyle
Former-commit-id: 329cea1defa2e9ecd3e1361f6856cfb38e900423
This commit is contained in:
@@ -131,8 +131,8 @@ public class Dependency implements Comparable<Dependency> {
|
|||||||
public void setActualFilePath(String actualFilePath) {
|
public void setActualFilePath(String actualFilePath) {
|
||||||
this.actualFilePath = actualFilePath;
|
this.actualFilePath = actualFilePath;
|
||||||
if (this.sha1sum == null) {
|
if (this.sha1sum == null) {
|
||||||
File f = new File(this.actualFilePath);
|
final File file = new File(this.actualFilePath);
|
||||||
determineHashes(f);
|
determineHashes(file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user