You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That is no obfuscation. This is just a local variable named with a $ sign.
Such code might be automatically generated by project-lombok or other tools.
Obfuscators would not leave meaningful names like "left", "right", "this" or "other" inside local variable names. They would either remove all local variable name information or fill it with garbage.
This is only possible to handle manually.
Or try to use another decompiler or tell the decompiler to not use existing local variable info (might backfire in other places).
The reason that there is "Object" is very likely due to generic erasure if that equals method was not originally created by an automatictool like lombok.
Generic types are a source code / compilation construct and afaik optional generic extra information cannot be safed in class files for local variables.
hello I had a question. is there an obfuscator who obfuscates with "$" if yes how to remove them? and replace some argument to Object
like this
@OverRide
The text was updated successfully, but these errors were encountered: