mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
7 lines
179 B
Java
Vendored
7 lines
179 B
Java
Vendored
import java.util.*;
|
|
|
|
class JavaClass {
|
|
public static void sortIntList(List<Integer> list, Comparator<Integer> comparator) {
|
|
Collections.sort(list, comparator);
|
|
}
|
|
} |