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

Method getOuterName

src/main/java/matcher/type/ClassInstance.java:1147–1151  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

1145 }
1146
1147 public static String getOuterName(String name) {
1148 int pos = name.lastIndexOf('$');
1149
1150 return hasOuterName(name, pos) ? name.substring(0, pos) : null;
1151 }
1152
1153 public static String getInnerName(String name) {
1154 return name.substring(name.lastIndexOf('$') + 1);

Callers 1

evalFilterMethod · 0.95

Calls 1

hasOuterNameMethod · 0.95

Tested by

no test coverage detected