summaryrefslogtreecommitdiff
path: root/test/junit/scala/collection
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2016-08-02 11:43:36 -0700
committerJason Zaugg <jzaugg@gmail.com>2016-08-15 14:34:51 +1000
commit40f7fce0af1da614d99048b024e1ff579635f0f2 (patch)
treee0471e7302da2291edb14a43a32bb0073e25aee4 /test/junit/scala/collection
parent804133f60dd3c78909dc9e557e91b5c9923240ff (diff)
downloadscala-40f7fce0af1da614d99048b024e1ff579635f0f2.tar.gz
scala-40f7fce0af1da614d99048b024e1ff579635f0f2.tar.bz2
scala-40f7fce0af1da614d99048b024e1ff579635f0f2.zip
SD-192 Change scheme for trait super accessors
Rather than putting the code of a trait method body into a static method, leave it in the default method. The static method (needed as the target of the super calls) now uses `invokespecial` to exactly call that method.
Diffstat (limited to 'test/junit/scala/collection')
-rw-r--r--test/junit/scala/collection/mutable/OpenHashMapTest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/junit/scala/collection/mutable/OpenHashMapTest.scala b/test/junit/scala/collection/mutable/OpenHashMapTest.scala
index b6cddf2101..90f6be6ee5 100644
--- a/test/junit/scala/collection/mutable/OpenHashMapTest.scala
+++ b/test/junit/scala/collection/mutable/OpenHashMapTest.scala
@@ -1,6 +1,6 @@
package scala.collection.mutable
-import org.junit.Test
+import org.junit.{Ignore, Test}
import org.junit.Assert._
import org.junit.runner.RunWith
import org.junit.runners.JUnit4