Redundant companion reference: fix false positive with overridden Java getter (#2935)

#KT-33771 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-01-30 21:55:47 +09:00
committed by GitHub
parent 9f7af4b58d
commit 2f19ad7bdc
13 changed files with 62 additions and 24 deletions
@@ -1,4 +1,8 @@
public class Bar {
public String getBar() {
return "";
}
public void setBar(String bar) {
}
}