return replacements;
}
private void maybeHandleSharedMethod(JMethod method, String obfuscatedClassName) {
JClassType enclosingType = method.getEnclosingType();
Shared shared = enclosingType.getAnnotation(Shared.class);
if (shared != null) {
replacementsForSharedMethods.put(method, obfuscatedClassName);
}
}