Skip to content
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

Issue #15003: Add new input file for pattern syntax in UnnecessaryPar… #15250

Merged
merged 1 commit into from
Jul 15, 2024

Conversation

mahfouz72
Copy link
Member

closes #15003

Comment on lines 21 to +29
boolean result = (o instanceof String a) ?
(o instanceof String x) : (!(o instanceof String y));

boolean f = (o instanceof String x);
// violation above, 'Unnecessary parentheses around assignment right-hand side.'

boolean b = (!(o instanceof Rectangle(_, _)));
// violation above, 'Unnecessary parentheses around assignment right-hand side.'
boolean c = !(o instanceof Rectangle(_, _));
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Given these new examples, shouldn't we have 2 violations on line 22 ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, please open an issue for us to explore this more

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

@nrmancuso nrmancuso left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nrmancuso nrmancuso self-assigned this Jul 13, 2024
@nrmancuso nrmancuso merged commit d335962 into checkstyle:master Jul 15, 2024
111 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Development

Successfully merging this pull request may close these issues.

Add Check Support for Java 21 Record Pattern Syntax : UnnecessaryParenthesesCheck
2 participants