mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Non-functional change for Java 8 compatibility.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user