mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
202 B
Java
12 lines
202 B
Java
// "Remove redundant initializer" "true-preview"
|
|
class A {
|
|
private String myFoo = ab<caret>c();
|
|
|
|
protected String abc() {
|
|
return "";
|
|
}
|
|
|
|
public A(String myFoo) {
|
|
this.myFoo = myFoo;
|
|
}
|
|
} |