You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
459 B

This error type is reported in Java. It fires when an immutable collection is
returned from a method whose type is mutable.
```java
public List<String> getSomeList() {
ImmutableList<String> l = foo(...);
return l;
}
```
This can lead to a runtime error if users of `getSomeList` try to modify the
list e.g. by adding elements.
Action: you can change the return type to be immutable, or make a copy of the
collection so that it can be modified.