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

Method matchUnobfuscated

src/main/java/matcher/Matcher.java:73–83  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

71 }
72
73 private void matchUnobfuscated() {
74 for (ClassInstance cls : env.getClassesA()) {
75 if (cls.isNameObfuscated() || !cls.isReal()) continue;
76
77 ClassInstance match = env.getLocalClsByIdB(cls.getId());
78
79 if (match != null && !match.isNameObfuscated()) {
80 match(cls, match);
81 }
82 }
83 }
84
85 public void reset() {
86 env.reset();

Callers 1

initMethod · 0.95

Calls 7

isNameObfuscatedMethod · 0.95
matchMethod · 0.95
getClassesAMethod · 0.80
getLocalClsByIdBMethod · 0.80
isNameObfuscatedMethod · 0.65
getIdMethod · 0.65
isRealMethod · 0.45

Tested by

no test coverage detected