Skip to content

Commit

Permalink
Continue work to remove the H2 MVStore library stop reaping for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeronica committed Dec 18, 2023
1 parent 31ba2f4 commit b2dd48c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/aeronicamc/mods/mxtune/caches/ModDataStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ public static void start()
if (getMvStore() != null)
LOGGER.debug("MVStore Started. Commit Version: {}, file: {}", getMvStore().getCurrentVersion(), getMvStore().getFileStore());
}
testGet();
long count = reapSheetMusic(false); // TODO: Remember to set whatIf to false for production!
// testGet();
// long count = reapSheetMusic(false); // TODO: Remember to set whatIf to false for production!
}

public static void shutdown()
Expand Down Expand Up @@ -237,7 +237,7 @@ public static void removeSheetMusic(String musicIndex)
}
catch (ClassCastException | UnsupportedOperationException | NullPointerException e)
{
LOGGER.error("removeSheetMusic: " + localDateTime.toString(), e);
LOGGER.error("removeSheetMusic: " + localDateTime, e);
}
getMvStore().deregisterVersionUsage(using);
}
Expand Down

0 comments on commit b2dd48c

Please sign in to comment.