Java to Kotlin converter: more correct logic for specifying field type

This commit is contained in:
Valentin Kipyatkov
2014-06-24 19:48:31 +04:00
parent 6e473506fc
commit 63ebfe2c03
12 changed files with 67 additions and 64 deletions
@@ -11,7 +11,7 @@ class Foo {
class Bar {
@NotNull
Foo fooNotNull = Foo();
Foo fooNotNull = new Foo();
Foo fooNullable = null;
}