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
The rule should not give violation when the field was initiated in the method marked by @PostConstruct annotation
@PostConstruct
public class X { private ObjectMapper mapper; @PostConstruct public void init() { mapper = new ObjectMapper(); } ... }
The text was updated successfully, but these errors were encountered:
dgroup#81: Fix of AvoidUsingObjectMapperAsALocalVariable
cc75770
dykov
Successfully merging a pull request may close this issue.
The rule should not give violation when the field was initiated in the method marked by
@PostConstruct
annotationThe text was updated successfully, but these errors were encountered: