md-5 / SpecialSource

Automatic generator and renamer of jar obfuscation mappings.
Other
202 stars 51 forks source link

Methods fetched via reflection are renamed, but not fields #78

Open libraryaddict opened 2 years ago

libraryaddict commented 2 years ago

Entity.class.getMethod("MethodName") will be remapped properly.

However, I'm not sure why it's not supported, but Entity.class.getField("FieldName") will not be remapped.

Seems like a bit of a weird oversight.