Non-functional change for Java 8 compatibility.

This commit is contained in:
elcnesh
2014-12-02 08:28:05 +00:00
parent f918978462
commit 06681655c3

View File

@@ -265,7 +265,7 @@ public class FCollection<T> implements List<T>, Set<T>, FCollectionView<T>, Clon
}
});
}
public void sort(Comparator<T> comparator) {
public void sort(final Comparator<? super T> comparator) {
Collections.sort(list, comparator);
}