mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-23 09:31:32 +01:00
checkstyle correction
This commit is contained in:
@@ -275,7 +275,7 @@ public class NvdCveUpdater extends BaseUpdater implements CachedWebDataSource {
|
|||||||
final int endYear = Calendar.getInstance().get(Calendar.YEAR);
|
final int endYear = Calendar.getInstance().get(Calendar.YEAR);
|
||||||
boolean needsFullUpdate = false;
|
boolean needsFullUpdate = false;
|
||||||
for (int y = startYear; y <= endYear; y++) {
|
for (int y = startYear; y <= endYear; y++) {
|
||||||
long val = Long.parseLong(getProperties().getProperty(DatabaseProperties.LAST_UPDATED_BASE + y, "0"));
|
final long val = Long.parseLong(getProperties().getProperty(DatabaseProperties.LAST_UPDATED_BASE + y, "0"));
|
||||||
if (val == 0) {
|
if (val == 0) {
|
||||||
needsFullUpdate = true;
|
needsFullUpdate = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user