New J2K: remove initializer from property without backing field

#KT-33637 fixed
This commit is contained in:
Ilya Kirillov
2019-12-02 12:59:44 +03:00
parent 1756857237
commit 14a8d3726d
5 changed files with 65 additions and 19 deletions
@@ -0,0 +1,7 @@
public class Host {
private String name;
public String getName() {
return "Name";
}
}
@@ -0,0 +1,4 @@
class Host {
val name: String?
get() = "Name"
}