mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
234 B
Java
12 lines
234 B
Java
// "Replace with lambda" "true"
|
|
class Test {
|
|
{
|
|
Comparable<String> c = new Compa<caret>rable<String>() {
|
|
@Override
|
|
public int compareTo(String o) {
|
|
System.out.println();
|
|
return 0;
|
|
}
|
|
};
|
|
}
|
|
} |