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

Method TagData

src/main/java/gregapi/code/TagData.java:50–55  ·  view source on GitHub ↗
(String aName)

Source from the content-addressed store, hash-verified

48 public final List<TagData> AS_LIST = Collections.unmodifiableList(Arrays.asList(this));
49
50 private TagData(String aName) {
51 mTagID = TAGS_INTERNAL.size();
52 mName = aName;
53 TAGS_INTERNAL.add(this);
54 TAGS.add(this);
55 }
56
57 public static TagData createTagData(String aName, String aLocalShort, String aLocalLong, String aChatFormat) {
58 TagData rTagData = createTagData(aName, aLocalShort, aLocalLong);

Callers

nothing calls this directly

Calls 2

addMethod · 0.65
sizeMethod · 0.45

Tested by

no test coverage detected