Skip to content
Snippets Groups Projects
Commit 2905611c authored by Reynold Xin's avatar Reynold Xin
Browse files

Merge pull request #851 from markhamstra/MutablePairTE

Removed meaningless types
parents aa2b89d9 5eea613e
No related branches found
No related tags found
No related merge requests found
...@@ -32,5 +32,5 @@ case class MutablePair[@specialized(Int, Long, Double, Char, Boolean/*, AnyRef*/ ...@@ -32,5 +32,5 @@ case class MutablePair[@specialized(Int, Long, Double, Char, Boolean/*, AnyRef*/
{ {
override def toString = "(" + _1 + "," + _2 + ")" override def toString = "(" + _1 + "," + _2 + ")"
override def canEqual(that: Any): Boolean = that.isInstanceOf[MutablePair[T1, T2]] override def canEqual(that: Any): Boolean = that.isInstanceOf[MutablePair[_,_]]
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment