-
Notifications
You must be signed in to change notification settings - Fork 854
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
Robustness of the "Goto Type Dialog" #7899
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.
Looks reasonable to me.
@jtulach please read NOTICE emails. Only @ebarboni or @MartinBalin should be merging to delivery. https://cwiki.apache.org/confluence/display/NETBEANS/Pull+requests+for+delivery |
tbh it is easy to overlook when the branch target is changed by a reviewer. My inspector gadget senses tell me that @jtulach probably saw the approval and simply merged, thinking that the PR will land in master. but there was likely no harm done here, since the branch was pre-version bump, so the merge commit didn't blow up. |
Opps. I wanted to merge to
I haven't noticed the change. I only checked Jan's message - I wasn't expecting target branch change.
Benefit of being behind the HEAD. Sorry for the ripples. @ebarboni or @MartinBalin feel free to keep or remove the change from |
it's fine, sync PR created. |
I started to see following exception when using the "GoTo Type Dialog" and the dialog stop showing anything:
It is not good when a single broken provider brakes everything. This PR catches exceptions from each provider, logs the exception coming from
TypeProvider.computeTypeNames
and goes on and querying the other providers. With this fix I see the exception in the log, but _"Goto Type Dialog" continues to work as expected.