Fixed bug with duplicated members in Override Members dialog

This commit is contained in:
Valentin Kipyatkov
2015-08-26 13:55:58 +03:00
parent ccfa48b564
commit dcfe9b98d7
4 changed files with 41 additions and 6 deletions
@@ -0,0 +1,8 @@
open class A<T> {
}
interface I
class B : A<String>(), I {
<caret>
}
@@ -0,0 +1,18 @@
open class A<T> {
}
interface I
class B : A<String>(), I {
override fun equals(other: Any?): Boolean {
<selection><caret>return super.equals(other)</selection>
}
override fun hashCode(): Int {
return super.hashCode()
}
override fun toString(): String {
return super.toString()
}
}