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

Method mapMethodDesc

src/me/lpk/mapping/SkidRemapper.java:49–59  ·  view source on GitHub ↗
(String desc)

Source from the content-addressed store, hash-verified

47 }
48
49 @Override
50 public String mapMethodDesc(String desc) {
51 if ("()V".equals(desc)) {
52 return desc;
53 }
54 if (!desc.startsWith("(")) {
55 // In case something goes terribly wrong, make it obvious what the issue is.
56 throw new RuntimeException();
57 }
58 return super.mapMethodDesc(StringUtils.fixDesc(desc, mappings));
59 }
60
61 @Override
62 public Object mapValue(Object value) {

Callers

nothing calls this directly

Calls 2

fixDescMethod · 0.95
equalsMethod · 0.45

Tested by

no test coverage detected