revert database name to dc.h2.db

This commit is contained in:
Jeremy Long
2017-08-13 16:05:26 -04:00
parent 3ef80644f8
commit c0aca39d31
9 changed files with 17 additions and 11 deletions

View File

@@ -112,7 +112,7 @@ public class App {
}
File db;
try {
db = new File(Settings.getDataDirectory(), Settings.getString(Settings.KEYS.DB_FILE_NAME, "odc.h2.db"));
db = new File(Settings.getDataDirectory(), Settings.getString(Settings.KEYS.DB_FILE_NAME, "dc.h2.db"));
if (db.exists()) {
if (db.delete()) {
LOGGER.info("Database file purged; local copy of the NVD has been removed");