mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
revert lower accessibility for getters/setters (IDEA-108598) + consistency to getter/setter completion
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@
|
||||
class A {
|
||||
private String s;
|
||||
|
||||
String getS() {
|
||||
public String getS() {
|
||||
return s;
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -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;
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
class A {
|
||||
private String s;
|
||||
|
||||
void setS(String s) {
|
||||
public void setS(String s) {
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -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