MCPcopy Create free account
hub / github.com/GregTech6/gregtech6 / names

Method names

src/main/java/gregapi/util/ST.java:971–975  ·  view source on GitHub ↗
(ItemStack... aStacks)

Source from the content-addressed store, hash-verified

969 return rString;
970 }
971 public static String names(ItemStack... aStacks) {
972 String rString = "";
973 for (ItemStack tStack : aStacks) rString += (tStack == null ? "null; " : tStack.getDisplayName() + "; ");
974 return rString;
975 }
976 public static String namesAndSizes(ItemStack... aStacks) {
977 String rString = "";
978 for (ItemStack tStack : aStacks) rString += (tStack == null ? "null; " : tStack.getDisplayName() + " " + tStack.stackSize + "; ");

Callers 5

addMethod · 0.95
getDataToolTipMethod · 0.95
namesMethod · 0.95
addToolTipsMethod · 0.95
onModServerStarting2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected