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