summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/OpenHashMap.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-01-10 19:20:55 +0000
committerPaul Phillips <paulp@improving.org>2011-01-10 19:20:55 +0000
commit9558f60e7ae165e10b41f0649535e95fee255199 (patch)
tree0763338b0d78a556723a129098bf2680435feb3a /src/library/scala/collection/mutable/OpenHashMap.scala
parent059e8be4c78bbc10f31ff9e404d395b7cfaf52f6 (diff)
downloadscala-9558f60e7ae165e10b41f0649535e95fee255199.tar.gz
scala-9558f60e7ae165e10b41f0649535e95fee255199.tar.bz2
scala-9558f60e7ae165e10b41f0649535e95fee255199.zip
A test case for recently fixed #4114. Plus!
I had closed #2441 as a duplicate of that, but unfortunately #4114 did not bring #2441 along with it. Then I realized I'm a programmer, not a helpless trac watcher. As is often the case with thes things, fixing that revealed a bug in the library. Closes #2441 for real, review by odersky.
Diffstat (limited to 'src/library/scala/collection/mutable/OpenHashMap.scala')
-rw-r--r--src/library/scala/collection/mutable/OpenHashMap.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/mutable/OpenHashMap.scala b/src/library/scala/collection/mutable/OpenHashMap.scala
index 418c35d7d6..9c31cc5a6f 100644
--- a/src/library/scala/collection/mutable/OpenHashMap.scala
+++ b/src/library/scala/collection/mutable/OpenHashMap.scala
@@ -67,7 +67,7 @@ extends Map[Key, Value]
with MapLike[Key, Value, OpenHashMap[Key, Value]] {
import OpenHashMap.OpenEntry
- type Entry = OpenEntry[Key, Value]
+ private type Entry = OpenEntry[Key, Value]
/**
* A default constructor creates a hashmap with initial size 8.