File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
src/main/java/me/touchie771/minecraftGUI/api Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 1111import org .jetbrains .annotations .NotNull ;
1212import org .jetbrains .annotations .Nullable ;
1313
14- import java .util .Collections ;
15- import java .util .HashMap ;
16- import java .util .HashSet ;
17- import java .util .List ;
18- import java .util .Map ;
14+ import java .util .*;
1915import java .util .function .Consumer ;
2016
2117/**
@@ -144,8 +140,8 @@ public Inventory getInventory() {
144140 *
145141 * @return an unmodifiable set of SlotItem instances in this menu
146142 */
147- public HashSet <SlotItem > getItems () {
148- return ( HashSet < SlotItem >) Collections .unmodifiableSet (this .items );
143+ public Set <SlotItem > getItems () {
144+ return Collections .unmodifiableSet (this .items );
149145 }
150146
151147 /**
You can’t perform that action at this time.
0 commit comments