Generi-size PhaseChangeFreeze (#594)

* Generi-size PhaseChangeFreeze

Make the ConcurrentHashMap in PhaseChangeFreeze Generic to allow for Java 7 / Java 8 compatibility.

* Add missing import to PhaseChangeFreeze

* Update PhaseChangeFreeze accessor
This commit is contained in:
Christopher Martin 2016-10-09 12:01:38 -07:00 committed by GitHub
parent fad2f5542b
commit 2b3ae10c2b

View file

@ -13,11 +13,12 @@ import org.bukkit.block.Block;
import org.bukkit.entity.Player;
import org.bukkit.scheduler.BukkitRunnable;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
public class PhaseChangeFreeze extends IceAbility {
private static final ConcurrentHashMap<Block, Byte> FROZEN_BLOCKS = new ConcurrentHashMap<>();
private static final Map<Block, Byte> FROZEN_BLOCKS = new ConcurrentHashMap<>();
private static final double REMOVE_RANGE = 50; // TODO: Make the remove range non static
private static boolean overloading = false;
@ -241,7 +242,7 @@ public class PhaseChangeFreeze extends IceAbility {
this.radius = radius;
}
public static ConcurrentHashMap<Block, Byte> getFrozenBlocks() {
public static Map<Block, Byte> getFrozenBlocks() {
return FROZEN_BLOCKS;
}