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

Method hasMappedName

src/main/java/matcher/type/ClassInstance.java:898–904  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

896 }
897
898 @Override
899 public boolean hasMappedName() {
900 return mappedName != null
901 || matchedClass != null && matchedClass.mappedName != null
902 || elementClass != null && elementClass.hasMappedName()
903 /*|| outerClass != null && outerClass.hasMappedName() TODO: for anonymous only?*/;
904 }
905
906 public boolean hasNoFullyMappedName() {
907 assert elementClass == null || outerClass == null; // array classes can't have an outer class

Callers

nothing calls this directly

Calls 1

hasMappedNameMethod · 0.65

Tested by

no test coverage detected