mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: de9da180223f231638eb51804b7ed9c26c36d772
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;
|
|
}
|
|
} |