mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-21 08:39:24 +01:00
minor changes to comply with checkstyle
Former-commit-id: a6bbfb32f741ec60a9c45c89c8a70f4260622484
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