mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
IDEA-302310 GitOrigin-RevId: 2b364e79c3b2f43fe4729677491c3676ba39d493
8 lines
176 B
Java
8 lines
176 B
Java
// "Replace '(String) obj' with 's'" "true-preview"
|
|
|
|
class X {
|
|
void foo(Object obj) {
|
|
String s = (String) obj;
|
|
System.out.println(((String) ob<caret>j).trim());
|
|
}
|
|
} |