mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-08 21:43:11 +00:00
Don't use keyset on ConcurrentHashMap
This commit is contained in:
parent
160ac794e1
commit
8040e13919
4 changed files with 22 additions and 22 deletions
|
@ -327,7 +327,7 @@ public class SpongeMain implements IPlotMain, PluginContainer {
|
|||
|
||||
public void registerBlocks() {
|
||||
blockMap = new BlockState[256][];
|
||||
blockMapReverse = new ConcurrentHashMap<BlockState, PlotBlock>();
|
||||
blockMapReverse = new HashMap<BlockState, PlotBlock>();
|
||||
HashMap<String, BlockState> states = new HashMap<>();
|
||||
|
||||
PS.get().copyFile("ids.txt", "config");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue