Java to Kotlin converter: correct nullability in signatures of overrides

#KT-5269 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-06-20 19:26:39 +04:00
parent 2188af2bf9
commit 5ac762034a
16 changed files with 153 additions and 25 deletions
@@ -5,7 +5,7 @@ class Test() : Base() {
return super.hashCode()
}
override fun equals(o: Any): Boolean {
override fun equals(o: Any?): Boolean {
return super.equals(o)
}
@@ -29,7 +29,7 @@ class Base() {
return super.hashCode()
}
override fun equals(other: Any?): Boolean {
override fun equals(o: Any?): Boolean {
return super.equals(o)
}