mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
11 lines
267 B
Java
11 lines
267 B
Java
class XX {
|
|
public static String foo(Properties p, String s, boolean b){return null;}
|
|
public static String foo(Map p, String s, boolean b){return null;}
|
|
}
|
|
class UU {
|
|
void bar() {
|
|
Properties p = new Properties();
|
|
XX.fo<caret>o(p, "xxx", false);
|
|
}
|
|
}
|