-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fix 14682: fix overriding check in mergeSingleDenot #14755
Conversation
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.
I wonder if there is some more modular/systematic way to ensure that all the overriding checks follow the relaxed rules for Java methods. There are many places that need to check this condition and we were missing some of them; is there some way to make sure that we are not missing any now and won't miss some in the future?
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.
Otherwise LGTM
@olhotak This is why I moved the |
We should relax overriding check in
mergeSingleDenot
as we did in other places.I also moved some explicit nulls tests to
tests/explicit-nulls
folder.