Skip to content

Commit 541dbd9

Browse files
committed
refactor: import
1 parent 57cb885 commit 541dbd9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

type.bedwarsgame/src/main/java/net/swofty/type/bedwarsgame/gui/GUITeamChest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import net.swofty.type.generic.user.HypixelPlayer;
1616

1717
import java.util.Map;
18+
import java.util.concurrent.ConcurrentHashMap;
1819

1920
public class GUITeamChest extends SharedInventory {
2021

@@ -196,7 +197,7 @@ protected void onSharedItemChanged(int slot, ItemStack oldItem, ItemStack newIte
196197
continue;
197198
}
198199

199-
Map<Integer, ItemStack> teamChest = game.getChests().computeIfAbsent(teamKey, k -> new java.util.concurrent.ConcurrentHashMap<>());
200+
Map<Integer, ItemStack> teamChest = game.getChests().computeIfAbsent(teamKey, k -> new ConcurrentHashMap<>());
200201
if (newItem.isAir()) {
201202
teamChest.remove(slot);
202203
} else {

0 commit comments

Comments
 (0)