mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
revert lower accessibility for getters/setters (IDEA-108598) + consistency to getter/setter completion
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
class A {
|
||||
private String s;
|
||||
|
||||
String getS() {
|
||||
public String getS() {
|
||||
return s;
|
||||
}
|
||||
}
|
||||
@@ -2,11 +2,11 @@
|
||||
class A {
|
||||
private String s;
|
||||
|
||||
String getS() {
|
||||
public String getS() {
|
||||
return s;
|
||||
}
|
||||
|
||||
void setS(String s) {
|
||||
public void setS(String s) {
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
class A {
|
||||
private String s;
|
||||
|
||||
void setS(String s) {
|
||||
public void setS(String s) {
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@ public enum TestEnum {
|
||||
this._i = _i;
|
||||
}
|
||||
|
||||
private int get_i() {
|
||||
public int get_i() {
|
||||
return _i;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user