Java to Kotlin converter: minor corrections after code review

This commit is contained in:
Valentin Kipyatkov
2014-06-06 20:49:18 +04:00
parent f652c50c8c
commit e947ad7294
32 changed files with 145 additions and 56 deletions
@@ -6,7 +6,7 @@ interface I {
class C {
void foo(I i) {
if (i.getString() == null) {
println("null")
println("null");
}
}
}