When deleting beatmaps, remove their MD5 hashes from the lookup table.

Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
Jeffrey Han
2015-09-02 14:37:16 -05:00
parent d5154b567e
commit 396071dfbc
2 changed files with 13 additions and 5 deletions

View File

@@ -64,6 +64,9 @@ public class Beatmap implements Comparable<Beatmap> {
/** The OSU File object associated with this beatmap. */
private File file;
/** MD5 hash of this file. */
public String md5Hash;
/**
* [General]
*/
@@ -203,9 +206,6 @@ public class Beatmap implements Comparable<Beatmap> {
/** Slider border color. If null, the skin value is used. */
public Color sliderBorder;
/** MD5 hash of this file. */
public String md5Hash;
/**
* [HitObjects]
*/