mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
15 lines
228 B
Java
15 lines
228 B
Java
// "Create method 'fooBar'" "true"
|
|
class FooBar {
|
|
{
|
|
Comparator<String> c = this::fooBar;
|
|
}
|
|
|
|
private int fooBar(String s, String s1) {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
interface Comparator<T> {
|
|
int compare(T o1, T o2);
|
|
} |