mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 14:30:49 +07:00
GitOrigin-RevId: efe6feafd81a99bde15e892530c1085fc4fb8772
7 lines
132 B
Java
7 lines
132 B
Java
class A {
|
|
void test(Object obj) {
|
|
if (obj instanceof String) {
|
|
String temp = (String) obj;
|
|
}
|
|
}
|
|
} |