File tree Expand file tree Collapse file tree
src/main/java/gregtech/common/covers/filter Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,30 +81,6 @@ public BaseFilter copy() {
8181 return new SmartItemFilter ();
8282 }
8383
84- private static class ItemAndMetadataAndStackSize {
85-
86- public final ItemAndMetadata itemAndMetadata ;
87- public final int transferStackSize ;
88-
89- public ItemAndMetadataAndStackSize (ItemAndMetadata itemAndMetadata , int transferStackSize ) {
90- this .itemAndMetadata = itemAndMetadata ;
91- this .transferStackSize = transferStackSize ;
92- }
93-
94- @ Override
95- public boolean equals (Object o ) {
96- if (this == o ) return true ;
97- if (!(o instanceof ItemAndMetadataAndStackSize )) return false ;
98- ItemAndMetadataAndStackSize that = (ItemAndMetadataAndStackSize ) o ;
99- return itemAndMetadata .equals (that .itemAndMetadata );
100- }
101-
102- @ Override
103- public int hashCode () {
104- return itemAndMetadata .hashCode ();
105- }
106- }
107-
10884 public enum SmartFilteringMode implements IStringSerializable {
10985
11086 ELECTROLYZER ("cover.smart_item_filter.filtering_mode.electrolyzer" , RecipeMaps .ELECTROLYZER_RECIPES ),
You can’t perform that action at this time.
0 commit comments