-
Notifications
You must be signed in to change notification settings - Fork 26
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 usage of ProcessCanceledException to support 2024.2 #1047
Merged
vaisakhkannan
merged 21 commits into
OpenLiberty:intellij-2024.2-support
from
vaisakhkannan:#767-FIx-ProcessCanceledException
Nov 8, 2024
+258
−441
Merged
Changes from 8 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
e663b58
Fix Multi catch exception
vaisakhkannan aa9d11d
Updated header year
vaisakhkannan 54aae6c
Added common class for exception handling
vaisakhkannan 973a051
Updated AnnotationUtil.java
vaisakhkannan c4e4425
Refactored code to use common exception class
vaisakhkannan b4fd07f
Refactored quickfix code to use common exception class
vaisakhkannan 59632c6
Updated warning message
vaisakhkannan 7d0d98b
Added code for MicroProfileFaultToleranceASTValidator to use common c…
vaisakhkannan f6609f5
done more refactoring
vaisakhkannan d642c67
Added more refactored code
vaisakhkannan de48784
Refactored some code
vaisakhkannan 5568f54
Modified code in AnnotationUtil.java class
vaisakhkannan b048a86
Completed whole refactoring
vaisakhkannan f7a720f
Replaced null with () -> null for the fallback value
vaisakhkannan 283a777
Did change on method executeWithExceptionHandling
vaisakhkannan 659c6c6
I added more comments and corrected the indentation issue.
vaisakhkannan 92388f0
Added comment back
vaisakhkannan 5aa8e99
Replaced null
vaisakhkannan 3255846
Replaced null with false
vaisakhkannan d5a1c00
Changed to RuntimeException
vaisakhkannan c93a8dd
back to re-throw exception
vaisakhkannan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 see this method is private and only called by
getScopeAnnotations()
. Is there some way to combine this with the more widely used utility method you introduced inExceptionUtil
? Otherwise this has just introduced more complexity without reducing code duplication in this spot.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.
Yes @mrglavas , I made the changes , please take a look , Thanks