removed un-neede property value update

Former-commit-id: c9ccb79104de208cf9673b258ed739d9b78562dc
This commit is contained in:
Jeremy Long
2014-01-11 12:37:28 -05:00
parent b110e944c3
commit f92430d092

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()));
}