-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
refactor: address IntelliJ QAPlug plugin findings #5149
Merged
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
aa6ca30
qa: make final fields static
jdrueckert 1a53322
qa: remove unnecessary local before return
jdrueckert db4f626
qa: avoid instanceof checks in catch clause
jdrueckert e3d80fb
qa: method/constructor should not throw java.lang.Exception
jdrueckert f22c1fa
qa: instanceof check covers null check
jdrueckert 9d7204b
qa: avoid toString on String objects
jdrueckert 993b370
qa: remove overrides that only call their super
jdrueckert 315ef35
qa: remove unused private methods
jdrueckert 3c5d507
qa: if statement nesting not necessary
jdrueckert df3539a
qa: remove unused local variable
jdrueckert b0ec929
qa: close resources after use
jdrueckert 06c5fcf
qa: use equals() to compare object references
jdrueckert 3428369
Merge branch 'develop' into chore/qaplug-findings
jdrueckert a3f8fbc
fix: reintroduce override, needed to elevate access modifier
jdrueckert 760a174
fix: exception type in override
jdrueckert f067ba2
chore: replace invalid javadoc character with unicode representation
jdrueckert 077d488
javadoc: fix broken references
jdrueckert 6a816ed
javadoc: fix disallowed self-closing and empty elements
jdrueckert a27bd8e
javadoc: fix invalid uses of @param and @return
jdrueckert c93ad63
javadoc: fix bad use of symbols
jdrueckert ad27ad0
javadoc: fix disallowed list item tag without surrounding list
jdrueckert cce1a8b
javadoc: fix erroneous tags
jdrueckert 45e6571
javadoc: fix more references
jdrueckert 35c2bc3
javadoc: fix emphasize tags
jdrueckert 60a41a5
chore: fix missing javadoc errors
jdrueckert 3d13e1f
javadoc: fix @see
jdrueckert 848947e
checkstyle: remove illegal throws
jdrueckert f585450
checkstyle: remove unused imports
jdrueckert 01e8edd
refactor: replace explicit close with try-with-resources
jdrueckert b841271
revert: removal of unused param from AbstractFamily constructor
jdrueckert 2aad50f
revert: close zip Filesystem
jdrueckert 49725fa
revert: removing required zip.close
jdrueckert bf26781
Merge branch 'develop' into chore/qaplug-findings
jdrueckert 971c853
Merge branch 'develop' into chore/qaplug-findings
jdrueckert 08bd7ea
Merge branch 'develop' into chore/qaplug-findings
jdrueckert 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.
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 think you can put the
{@code
right next to the<pre>
and close it only in the end.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.
nope,
{@code ...}
(same as other@...
tags) unfortunately doesn't work across multiple lines.