babitha
(Babitha Dekka)
1
I write this getter/setter to list from Intellij source menu:
public List<Error> getErrors() {
return errors;
}
public void setErrors(final List<Error> errors) {
this.errors = errors;
}
And Sonar reporting two issues:
1. Return a copy of "errors".
2. Store a copy of "errors".
Colin
(Colin)
2
Please do not raise duplicate threads.
I will close this one.