summaryrefslogtreecommitdiff
path: root/src/detach/library
diff options
context:
space:
mode:
Diffstat (limited to 'src/detach/library')
-rw-r--r--src/detach/library/scala/runtime/remoting/RemoteGC.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/detach/library/scala/runtime/remoting/RemoteGC.scala b/src/detach/library/scala/runtime/remoting/RemoteGC.scala
index 30a9b6ba0c..b6915b5e60 100644
--- a/src/detach/library/scala/runtime/remoting/RemoteGC.scala
+++ b/src/detach/library/scala/runtime/remoting/RemoteGC.scala
@@ -13,8 +13,7 @@ package scala.runtime.remoting
import java.lang.ref.{Reference, WeakReference, ReferenceQueue}
import java.rmi.{NoSuchObjectException, Remote}
import java.rmi.server.UnicastRemoteObject
-
-import scala.collection.mutable.HashSet
+import scala.collection.mutable
/**
*
@@ -25,7 +24,7 @@ import scala.collection.mutable.HashSet
private [runtime] class RemoteGC {
private val refQueue = new ReferenceQueue[Remote]
- private val refSet = new HashSet[Reference[T] forSome { type T <: Remote }]
+ private val refSet = new mutable.HashSet[Reference[T] forSome { type T <: Remote }]
private var liveRefs = 0