mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
14 lines
317 B
Java
14 lines
317 B
Java
// "Create method 'toMulti'" "true"
|
|
import java.util.Map;
|
|
|
|
class BrokenCreateMethod {
|
|
|
|
public void foo(Map<String, String> bar) {
|
|
Map<String, String[]> multiBar = toMulti(bar);
|
|
}
|
|
|
|
private Map<String, String[]> toMulti(Map<String, String> bar) {
|
|
<selection>return null;</selection>
|
|
}
|
|
}
|