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
$ ./mvnw clean test-compile -DepFlags='-XepDisableAllChecks -Xep:ThreadSafe:WARN'
[INFO] Scanning for projects...
...
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.12.1:compile (default-compile) on project example: Fatal error compiling: ThreadSafe is not a valid checker name -> [Help 1]
I think this is because it is not named in BuiltInCheckerSuppliers.java (and never has been).
The text was updated successfully, but these errors were encountered:
commonquail
added a commit
to commonquail/error-prone
that referenced
this issue
Feb 26, 2025
Error Prone advertises https://errorprone.info/bugpattern/ThreadSafe but
does not recognize the name:
> Fatal error compiling: ThreadSafe is not a valid checker name
The implementing checker, `ThreadSafeChecker`, is missing from the index
of built-in checkers. Add it to the disabled checkers alongside the
other experimental checkers.
References: google#4833
In v2.36.0, https://errorprone.info/bugpattern/ThreadSafe seems to have an implementation in
ThreadSafeChecker.java
by the advertised name, but it cannot be activated by either name:I think this is because it is not named in
BuiltInCheckerSuppliers.java
(and never has been).The text was updated successfully, but these errors were encountered: