-
Notifications
You must be signed in to change notification settings - Fork 12
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
java.lang.Boolean constructor is deprecated #254
Comments
sovesti
added a commit
to sovesti/org.eclipse.mylyn
that referenced
this issue
Jul 20, 2023
Replaced all occurences of ```Boolean(boolean)``` with ```valueOf(boolean)``` Signed-off-by: Vasily Fedorov <[email protected]>
Can we just get the Java17 code cleanup/format conventions (#200) settled on and do a global cleanup? |
sovesti
added a commit
to sovesti/org.eclipse.mylyn
that referenced
this issue
Jul 21, 2023
Replaced all other constructors of primitive wrappers Signed-off-by: Vasily Fedorov <[email protected]>
sovesti
added a commit
to sovesti/org.eclipse.mylyn
that referenced
this issue
Jul 21, 2023
simplified some assignments Signed-off-by: Vasily Fedorov <[email protected]>
ruspl-afed
pushed a commit
that referenced
this issue
Jul 29, 2023
@ruspl-afed: Can we close this ticket? Or is something left? |
@sovesti are you done here? If so, please close the ticket. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are several uses of deprecated
Boolean(boolean value)
constructor in Mylyn codebase. It should be replaced withBoolean.valueOf(boolean value)
.The text was updated successfully, but these errors were encountered: