(String desc)
| 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) { |