fix checkstyles

This commit is contained in:
XenoAmess
2020-08-24 19:29:44 +08:00
parent 33f4e27254
commit 31ee6bfca1

View File

@ -563,8 +563,7 @@ interface ImmutableList<E> extends List<E> {
@Override
public List<E> toList() {
List<E> result = new ArrayList<>(this);
return result;
return new ArrayList<>(this);
}