This commit is contained in:
Mgazul
2019-11-22 23:06:18 +08:00
parent e24a0066a3
commit 80713fe0ac
512 changed files with 6986 additions and 2814 deletions

View File

@@ -1,8 +1,7 @@
package org.bukkit;
import java.util.Map;
import com.google.common.collect.Maps;
import java.util.Map;
import org.jetbrains.annotations.Nullable;
/**
@@ -35,7 +34,7 @@ public enum Difficulty {
HARD(3);
private final int value;
private final static Map<Integer, Difficulty> BY_ID = Maps.newHashMap();
private static final Map<Integer, Difficulty> BY_ID = Maps.newHashMap();
private Difficulty(final int value) {
this.value = value;