-
Notifications
You must be signed in to change notification settings - Fork 134
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
-Pcom.palantir.baseline-error-prone.disable #1213
Conversation
Generate changelog in
|
errorProneOptions.check("UnnecessaryLambda", CheckSeverity.OFF); | ||
} | ||
}); | ||
}); |
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.
this block was pretty much an exact duplicate of a block above, so I moved this logic further down.
Released 3.3.0 |
Before this PR
I want to start running some unit tests with Java13, but currently error-prone barfs, see:
After this PR
==COMMIT_MSG==
./gradlew compileJava -Pcom.palantir.baseline-error-prone.disable
turns off error-prone, to allow compilation on Java 13 which is not yet supported by error-prone.==COMMIT_MSG==
Possible downsides?