-
Notifications
You must be signed in to change notification settings - Fork 2k
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
[BUG] javadoc warnings not causing failures #5996
Conversation
It works!
|
I will fix that tomorrow :) thanks @andrross ! |
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
@@ -40,6 +40,11 @@ opensearchplugin { | |||
classname 'org.opensearch.painless.PainlessModulePlugin' | |||
} | |||
|
|||
ext { | |||
// Do not fail on `javadoc` warning (ANTLR generated code) | |||
failOnJavadocWarning = false |
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.
@@ -515,7 +515,7 @@ public void setNextDocId(int docId) throws IOException { | |||
} | |||
|
|||
/** | |||
* Set the {@link #size()} and ensure that the {@link #values} array can | |||
* Set the {@link #size()} and ensure that the internal values array can |
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.
{@link #values}
- javadoc complains (for a reason) that private final values
is not accessible, makes sense.
Gradle Check (Jenkins) Run Completed with:
|
Signed-off-by: Andriy Redko <andriy.redko@aiven.io> (cherry picked from commit 665ec6c) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Signed-off-by: Andriy Redko <andriy.redko@aiven.io> (cherry picked from commit 665ec6c) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Signed-off-by: Andriy Redko andriy.redko@aiven.io
Description
javadoc
warnings not causing failuresIssues Resolved
Closes #5995
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.