-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add @SuppressWarnings("all")
to stop scanning tool complaints
#52
Conversation
src/main/java/org/openrewrite/java/template/processor/RefasterTemplateProcessor.java
Outdated
Show resolved
Hide resolved
@Stephan202 When running this branch against error-prone-support I do see a rather curious error
Any ideas there? Wouldn't want to release a version that breaks things on error-prone-support, or requires undesired changes there. |
Yeah, that's because I moved the annotation processor declaration :)
Indeed,
|
Helpful context once again, thanks! Switched to |
@SuppressWarnings("all")
to stop scanning tool complaints
Does that also mean I can drop the empty constructors and Javadoc again? 😇 |
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.
Great question! I suspect that Doclint doesn't respect @SuppressWarnings("all")
, but you could try 😄
For PicnicSupermarket/error-prone-support#925 & @Stephan202