We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee49343 commit adece18Copy full SHA for adece18
library/src/scala/collection/mutable/WrappedArray.scala
@@ -129,10 +129,6 @@ object WrappedArray {
129
def apply(index: Int): T = array(index).asInstanceOf[T]
130
def update(index: Int, elem: T) { array(index) = elem }
131
override def hashCode = MurmurHash3.wrappedArrayHash(array)
132
- override def equals(that: Any) = that match {
133
- case that: ofRef[_] => array.sameElements(that.array)
134
- case _ => super.equals(that)
135
- }
136
}
137
138
final class ofByte(val array: Array[Byte]) extends WrappedArray[Byte] with Serializable {
0 commit comments