Method
mapSignature
(String signature, boolean typeSignature)
Source from the content-addressed store, hash-verified
| 64 | } |
| 65 | |
| 66 | @Override |
| 67 | public String mapSignature(String signature, boolean typeSignature) { |
| 68 | // Do not map null signatures |
| 69 | if (signature == null) { |
| 70 | return null; |
| 71 | } |
| 72 | return super.mapSignature(StringUtils.fixDesc(signature, mappings), typeSignature); |
| 73 | } |
| 74 | |
| 75 | @Override |
| 76 | public String mapMethodName(String owner, String name, String desc) { |
Callers
nothing calls this directly
Tested by
no test coverage detected