modified return type of TreasureChestItemIterator's constructor to be Iterator

This commit is contained in:
Mitchell Irvin
2018-08-28 07:46:02 -04:00
parent 1c2ddfad54
commit e6f84f2f41
2 changed files with 5 additions and 3 deletions
@@ -18,6 +18,7 @@
*/
package com.iluwatar.iterator.list;
import com.iluwatar.iterator.Iterator;
import java.util.ArrayList;
import java.util.List;
@@ -47,7 +48,7 @@ public class TreasureChest {
items.add(new Item(ItemType.WEAPON, "Dagger of poison"));
}
public TreasureChestItemIterator iterator(ItemType itemType) {
public Iterator iterator(ItemType itemType) {
return new TreasureChestItemIterator(this, itemType);
}