mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 11:29:28 +07:00
GitOrigin-RevId: 4b4130ab3de71edebe0506652bde403b8aed9450
10 lines
213 B
Java
10 lines
213 B
Java
// "Replace 's' with pattern variable" "false"
|
|
class X {
|
|
void test(Object obj) {
|
|
if (obj instanceof String) {
|
|
String <caret>s = (String)obj;
|
|
System.out.println(s);
|
|
s = s.trim();
|
|
}
|
|
}
|
|
} |