mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
closes https://github.com/JetBrains/intellij-community/pull/2226 GitOrigin-RevId: 88280737af72157554bfa036132ac1fb3914e972
10 lines
248 B
Java
10 lines
248 B
Java
// "Replace '(String) aText' with 'anActualText'" "true"
|
|
|
|
class FooBar {
|
|
void method() {
|
|
String anActualText = "Hello World! ";
|
|
Object aText = anActualText;
|
|
System.out.println(anActualText.trim());
|
|
aText = Integer.MAX_VALUE;
|
|
}
|
|
} |