mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
- fix Introduce variable throws exception in implicit classes GitOrigin-RevId: c3489b1c6df3669f01b6e5defbf8a2208a7b441d
9 lines
119 B
Java
9 lines
119 B
Java
public class C {
|
|
private final String myStr;
|
|
|
|
public C() {
|
|
String strings = myStr;
|
|
strings = "";
|
|
}
|
|
}
|