MCPcopy Create free account
hub / github.com/FabricMC/Matcher / getNestedName

Method getNestedName

src/main/java/matcher/type/ClassInstance.java:1157–1163  ·  view source on GitHub ↗
(String outerName, String innerName)

Source from the content-addressed store, hash-verified

1155 }
1156
1157 public static String getNestedName(String outerName, String innerName) {
1158 if (outerName == null || innerName == null) {
1159 return null;
1160 } else {
1161 return outerName + '$' + innerName;
1162 }
1163 }
1164
1165 public static String getPackageName(String name) {
1166 int pos = name.lastIndexOf('/');

Callers 1

getNameMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected