MCPcopy Create free account
hub / github.com/GraxCode/zelixkiller / getMethodNode

Method getMethodNode

src/me/lpk/mapping/loaders/SRGLoader.java:163–170  ·  view source on GitHub ↗
(List<MethodNode> methods, String name, String desc)

Source from the content-addressed store, hash-verified

161 }
162
163 private static MethodNode getMethodNode(List<MethodNode> methods, String name, String desc) {
164 for (MethodNode mn : methods) {
165 if (mn.name.equals(name) && mn.desc.equals(desc)) {
166 return mn;
167 }
168 }
169 return null;
170 }
171
172}

Callers 1

readMethod · 0.95

Calls 1

equalsMethod · 0.45

Tested by

no test coverage detected