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
@@ -0,0 +1,11 @@
class Base() {
override fun equals(other: Any?): Boolean {
return super.equals(o)
}
}
class X() : Base() {
override fun equals(o: Any?): Boolean {
return super.equals(o)
}
}