We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
running classes -PerrorProneApply in conjure-python removed this "unused" field which is actually necessary for argument parsing to work as expected.
classes -PerrorProneApply
@CommandLine.Unmatched @SuppressWarnings("UnusedVariable") private List<String> unmatchedOptions;
Don't remove fields that are explicitly marked with @SuppressWarnings("UnusedVariable")
@SuppressWarnings("UnusedVariable")
The text was updated successfully, but these errors were encountered:
i think we should take one more step, and avoid removing fields that are annotated.
Sorry, something went wrong.
Fix #1159: StrictUnusedVariable respects UnusedVariable suppression
b3049c6
8ecf71f
Like altogether? That might make sense. Is there any way we can make it a suggestion instead for those cases?
I'm not aware of any way to change the level of a check dynamically
No branches or pull requests
What happened?
running
classes -PerrorProneApply
in conjure-python removed this "unused" field which is actually necessary for argument parsing to work as expected.What did you want to happen?
Don't remove fields that are explicitly marked with
@SuppressWarnings("UnusedVariable")
The text was updated successfully, but these errors were encountered: