* Note that IDs for older maps might have been improperly parsed, so * there is no guarantee that this method will return an accurate value. * @param id the beatmap set ID to check * @return true if id is in the list */ public boolean containsBeatmapSetID(int id) { return MSIDdb.contains(id); } /** * Returns the beatmap associated with the given hash. * @param beatmapHash the MD5 hash * @return the associated beatmap, or {@code null} if no match was found */ public Beatmap getBeatmapFromHash(String beatmapHash) { return beatmapHashDB.get(beatmapHash); } }