-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong remap of super method with local static method of same name #87
Comments
…h the resolved class. Original fix by @KabanFriends and reported by @kennytv in FabricMC#87
…h the resolved class. Original fix by @KabanFriends and reported by @kennytv in FabricMC#87
Hello, I'm facing this issue right now and really need to build a paper jar, is there any workaround I can use to get around this issue before the pull request is merged? |
simply add
to the end of the "reobf-mappings-patch.tiny" in the "build-data" folder |
Thanks, before I saw this I just tried running the build from Windows Subsystem for Linux which worked for me. |
Given the following mappings, a remap of the super, non-static method
getStringRaw
results in a mangled call due to the local static method with the same remapped name (being a synthetic lambda method):DedicatedServerProperties
being an extending class ofSettings
:The error is:
Specifically, this happens when cloning Paper and running the
runReobf
gradle task (or running the jar given bycreateReobfBundlerJar
)... but apparently only when doing so on Windows, not Mac or Linux
Any help or possible fix would be appreciated
The text was updated successfully, but these errors were encountered: