resources.report.rules.findbugs.SA_FIELD_SELF_ASSIGNMENT.html Maven / Gradle / Ivy
SA_FIELD_SELF_ASSIGNMENT
SA: Self assignment of field (SA_FIELD_SELF_ASSIGNMENT)
This method contains a self assignment of a field; e.g.
int x;
public void foo() {
x = x;
}
Such assignments are useless, and may indicate a logic error or typo.