injectors: also handle Implements

This commit is contained in:
therealnull
2020-10-04 21:07:33 -04:00
parent c984198dd2
commit a1c9346233

View File

@@ -53,6 +53,11 @@ public class CreateAnnotations extends AbstractInjector
{
injectFields(deobClass);
injectMethods(deobClass);
if (deobClass.getName().startsWith("class"))
continue;
deobClass.addAnnotation(DeobAnnotations.IMPLEMENTS, deobClass.getName());
}
}