mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
10 lines
185 B
Plaintext
10 lines
185 B
Plaintext
import java.util.*;
|
|
|
|
class A {
|
|
private Comparator<String> b = new Comparator<String>() {
|
|
public int compare(String s1, String s2) {
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
} |