MCPcopy Index your code
hub / github.com/GregTech6/gregtech6 / identical_

Method identical_

src/main/java/gregapi/util/ST.java:124–124  ·  view source on GitHub ↗
(ItemStack aStack1, ItemStack aStack2)

Source from the content-addressed store, hash-verified

122
123 public static boolean identical (ItemStack aStack1, ItemStack aStack2) {return aStack1 == aStack2 || (aStack1 != null && aStack2 != null && identical_(aStack1, aStack2));}
124 public static boolean identical_(ItemStack aStack1, ItemStack aStack2) {return aStack1.stackSize == aStack2.stackSize && equal_(aStack1, aStack2, F);}
125
126 public static boolean isGT (Item aItem) {return aItem instanceof IItemGT;}
127 public static boolean isGT (Block aBlock) {return aBlock instanceof IItemGT;}

Callers 1

identicalMethod · 0.95

Calls 1

equal_Method · 0.95

Tested by

no test coverage detected