Java to Kotlin converter: minor corrections after code review
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user