removed un-neede property value update

Former-commit-id: 313e74b97e818fda1421785c4c462f6c330122a3
This commit is contained in:
Jeremy Long
2014-01-11 12:37:28 -05:00
parent 712a076be8
commit 4e62a2ee4f

View File

@@ -91,9 +91,7 @@ public class DatabaseProperties {
if (updatedValue == null) {
return;
}
properties.put("version", CveDB.DB_SCHEMA_VERSION);
properties.put(LAST_UPDATED_BASE + updatedValue.getId(), String.valueOf(updatedValue.getTimestamp()));
cveDB.saveProperty("version", CveDB.DB_SCHEMA_VERSION);
cveDB.saveProperty(LAST_UPDATED_BASE + updatedValue.getId(), String.valueOf(updatedValue.getTimestamp()));
}