We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Much of the code uses new Integer(int), which has been deprecated and slated for removal. Update to use Integer.valueOf() instead.
new Integer(int)
Integer.valueOf()
Warnings appear as:
Integer(int) in java.lang.Integer has been deprecated
The text was updated successfully, but these errors were encountered:
Fixed the warnings in sha 537fc46.
Sorry, something went wrong.
mbjones
No branches or pull requests
Much of the code uses
new Integer(int)
, which has been deprecated and slated for removal. Update to useInteger.valueOf()
instead.Warnings appear as:
The text was updated successfully, but these errors were encountered: