Skip to content

Commit

Permalink
fix(#10): fixed the cause of a random crash
Browse files Browse the repository at this point in the history
  • Loading branch information
meza committed Feb 11, 2024
1 parent 4eb6ceb commit be42006
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/src/main/java/gg/meza/client/SoundsBeGoneClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
import org.lwjgl.glfw.GLFW;

import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

public class SoundsBeGoneClient {
public static Map<String, Date> SoundMap = new HashMap<>();
public static Map<String, Date> SoundMap = new ConcurrentHashMap<>();
public static Config config = new Config();
public static Analytics analytics;
public static final KeyBinding openConfig = new KeyBinding("soundsbegone.config", InputUtil.Type.KEYSYM, GLFW.GLFW_KEY_B, "soundsbegone.keybinds");
Expand Down

0 comments on commit be42006

Please sign in to comment.