Explicit this inspection: suggest also for synthetic Java property

So #KT-22089 Fixed
This commit is contained in:
Toshiaki Kameyama
2018-05-22 11:25:26 +03:00
committed by Mikhail Glukhikh
parent 6b37e40f99
commit 4038d4d507
14 changed files with 159 additions and 5 deletions
@@ -0,0 +1,11 @@
public class Foo {
private boolean isB;
public boolean isB() {
return isB;
}
public void setB(boolean b) {
isB = b;
}
}