-
Notifications
You must be signed in to change notification settings - Fork 389
Add missing Override annotations #10324
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
83eb298
Add missing Override annotations
zbynek 0e1eb7e
Configure ErrorProne warnings
zbynek 06a20d2
Add more missing overrides
zbynek cc29843
Ignore more warnings
zbynek 9bdc5dc
Revert unrelated changes, use GwtIncompatible, code style
zbynek 35de5a8
Merge branch 'main' into overrides
zbynek 552ee7c
Fix failing test
zbynek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -43,9 +43,9 @@ jobs: | |
| TZ=America/Los_Angeles \ | ||
| ANT_OPTS=-Dfile.encoding=UTF8 \ | ||
| ANT_OPTS=-Xmx2g | ||
| ant clean compile.tests dist doc checkstyle apicheck | ||
| ant clean compile.tests dist doc checkstyle apicheck | tee log.txt | ||
|
|
||
| - name: Create pull request comments/annotations for checkstyle from the java 21 build, even on failure | ||
| - name: Create pull request comments/annotations for Checkstyle and ErrorProne from the java 21 build, even on failure | ||
| if: ${{ always() && github.event_name == 'pull_request' && matrix.java-version == '21' }} | ||
| env: | ||
| REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
@@ -56,8 +56,9 @@ jobs: | |
| cd gwt | ||
| for f in build/out/**/checkstyle*.xml ; do | ||
| echo $f | ||
| reviewdog -f=checkstyle -filter-mode=diff_context -reporter=github-pr-annotations -level=info < $f | ||
| reviewdog -f=checkstyle -filter-mode=diff_context -reporter=github-pr-annotations -level=info < $f || true | ||
| done | ||
| reviewdog -efm=" [javac] %f:%l: warning: %m" -filter-mode=diff_context -reporter=github-pr-annotations -level=info < log.txt || true | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you introduce a deliberate EP warning so we can validate that this is working? |
||
| - name: Upload checkstyle xml for manual review | ||
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #v7.0.1 | ||
| if: ${{ matrix.java-version == '21' }} | ||
|
|
||
This file contains hidden or 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 hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.