mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +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());
|
|
}
|
|
}
|
|
} |