-
Notifications
You must be signed in to change notification settings - Fork 616
Enable errorprone only by request. #1461
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
Conversation
The motivation is that errorprone produces different bytecode than javac this confuses retrolambda's desugaring where it fails to correctly desugar try-with-resources. To enable errorprone one needs to run: ``` ./gradlew :mylib:mytask withErrorProne ```
57f08d5
to
8f529e4
Compare
Binary Size ReportAffected SDKs
Test Logs |
6cee852
to
aa631d4
Compare
/retest |
9bd4ef4
to
aa631d4
Compare
Coverage ReportAffected SDKs
Test Logs
NotesHTML coverage reports can be produced locally with |
/test smoke-tests |
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.
Are thre er
The motivation is that errorprone produces different bytecode than javac
this confuses retrolambda's desugaring where it fails to correctly
desugar try-with-resources.
To enable errorprone one needs to run: