-
Notifications
You must be signed in to change notification settings - Fork 181
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
Analysis should not fail when highlighting has invalid text range #4604
Conversation
TypeOfText.valueOf(highlight.textType) | ||
); | ||
} catch (IllegalArgumentException e) { | ||
LOG.warn("Failed to save highlight", e); |
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.
Should we include in the warning the filename and the line number? I think it could help us save some time to investigate issues reported by users.
); | ||
} | ||
} catch (IllegalArgumentException e) { | ||
LOG.warn("Failed to create symbol", e); |
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.
Same question.
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.
LGTM!
Quality Gate passedIssues Measures |
Fixes #4550