Fix type in open TODO

This commit is contained in:
Len 2026-08-06 08:32:46 -05:00
parent d6d0556d5c
commit 11c5c69dc7

View File

@ -210,7 +210,7 @@ public class ShopHandler {
* @return TreeMap containing a list of PlayerShops per material. * @return TreeMap containing a list of PlayerShops per material.
*/ */
public TreeMap<Material, List<PlayerShop>> shopByMaterial() { public TreeMap<Material, List<PlayerShop>> shopByMaterial() {
// TODO -- make this a cache. update cache on change, do not calc dynamicly // TODO -- make this a cache. update cache on change, do not calc dynamically
TreeMap<Material, List<PlayerShop>> shopByMaterialTreeSet = new TreeMap<>(); TreeMap<Material, List<PlayerShop>> shopByMaterialTreeSet = new TreeMap<>();
for (PlayerShop shop : getShops()) { for (PlayerShop shop : getShops()) {