Supported non-literal arguments for SAM adapters.

This commit is contained in:
Evgeny Gerashchenko
2013-06-13 20:16:47 +04:00
parent 2e2061d9b6
commit ee9fcff9ca
10 changed files with 90 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
import java.util.*;
class JavaClass {
public static void sortIntList(List<Integer> list, Comparator<Integer> comparator) {
Collections.sort(list, comparator);
}
}