mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 17:38:08 +07:00
GitOrigin-RevId: b570df26d740aacb84357b1fbdbb0ced890970f0
13 lines
206 B
Java
13 lines
206 B
Java
// "Create getter for 's'" "true-preview"
|
|
public class A extends Parent{
|
|
private String s;
|
|
|
|
@Override
|
|
public String getS() {
|
|
return s;
|
|
}
|
|
}
|
|
|
|
class Parent {
|
|
public String getS() {}
|
|
} |