mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
14 lines
392 B
Java
14 lines
392 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; //To change body of created methods use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|