mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
7 lines
132 B
Plaintext
7 lines
132 B
Plaintext
class Test {
|
|
void test(Object obj) {
|
|
if (obj instanceof String) {
|
|
System.out.println(((String) obj).trim());
|
|
}
|
|
}
|
|
} |