Make EnchantmentContainer iterable
This commit is contained in:
parent
28522ccbf6
commit
eec0d5452d
@ -9,9 +9,10 @@ import org.bukkit.inventory.meta.EnchantmentStorageMeta;
|
|||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
import java.util.Iterator;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
public class EnchantmentContainer
|
public class EnchantmentContainer implements Iterable<Map.Entry<Enchantment, Integer>>
|
||||||
{
|
{
|
||||||
private Map<Enchantment, Integer> enchantments;
|
private Map<Enchantment, Integer> enchantments;
|
||||||
|
|
||||||
@ -244,4 +245,10 @@ public class EnchantmentContainer
|
|||||||
ret = ret.length() > 1 ? ret.substring(0, ret.length() - 2) : ret;
|
ret = ret.length() > 1 ? ret.substring(0, ret.length() - 2) : ret;
|
||||||
return ret + "]";
|
return ret + "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Iterator<Map.Entry<Enchantment, Integer>> iterator()
|
||||||
|
{
|
||||||
|
return enchantments.entrySet().iterator();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user