mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 16:48:29 +07:00
cdbae12245
GitOrigin-RevId: 32c2f18de0725a517f1ceb746edc8fa468b6fafa
5 lines
147 B
Java
5 lines
147 B
Java
class MyTest {
|
|
private static Object foo(String s, boolean b) {
|
|
return b ? (Object) Double.parseDouble(s) : (Object) Long.parseLong(s);
|
|
}
|
|
} |