-
Notifications
You must be signed in to change notification settings - Fork 139
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
Remove Apache Commons Lang and unnecessary Guava usages #25
base: master
Are you sure you want to change the base?
Conversation
Hi, any updates on this @RainWarrior ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that org.apache.commons.lang3.tuple.Triple
is an abstract class and subclasses may be mutable, while the newly added Triple
is immutable. However, that is probably fine since Minecraft only uses the immutable implementation?
Closing and reopening to rerun checks. |
More than 4 years, that's a while! @peterix I've resolved the merge conflicts and the build/tests run locally for me, just the GitHub Actions workflow is awaiting approval from a maintainer :) |
Lists.newArrayList()
that can be replace with justnew ArrayList<>()