You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With #16496 and commit 5ca0686 in #16490 were introduced some @SupressWarning annotations to avoid errors with JDK 21 like:
/buildkite/builds/bk-agent-prod-k8s-1728654414425952824/elastic/logstash-pull-request-pipeline/logstash-core/src/main/java/org/logstash/settings/BaseSetting.java:105: warning: [this-escape] possible 'this' escape before subclass is fully initialized
--
| validate(defaultValue);
| ^pileJava
| error: warnings found and -Werror specified
| 1 error
| 1 warning
|
| > Task :logstash-core:compileJava FAILED
|
| FAILURE: Build failed with an exception.
As per comment #16490 (review) this issue is to ask for removal of such annotations and leverage static method instead of calling instance methods on non-completely initialised instances.
The text was updated successfully, but these errors were encountered:
With #16496 and commit 5ca0686 in #16490 were introduced some
@SupressWarning
annotations to avoid errors with JDK 21 like:As per comment #16490 (review) this issue is to ask for removal of such annotations and leverage static method instead of calling instance methods on non-completely initialised instances.
The text was updated successfully, but these errors were encountered: