mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
12 lines
260 B
Java
12 lines
260 B
Java
// "Surround with array initialization" "true"
|
|
import java.util.*;
|
|
class A {
|
|
|
|
void foo(){
|
|
Arrays.sort(<caret>"Str", new Comparator<String>(){
|
|
public int compare(String o1, String o2) {
|
|
return 0;
|
|
}
|
|
});
|
|
}
|
|
} |