Skip to content

Commit

Permalink
Remove unused private methods in kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundnoble committed Jun 30, 2017
1 parent a3726a7 commit 9f03a71
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ object StaticMethods {

private[kernel] class WrappedMutableMap[K, V](m: mutable.Map[K, V]) extends Map[K, V] {
override def size: Int = m.size
def get(k: K): Option[V] = m.get(k)
def iterator: Iterator[(K, V)] = m.iterator
def +[V2 >: V](kv: (K, V2)): Map[K, V2] = m.toMap + kv
def -(key: K): Map[K, V] = m.toMap - key
}

// scalastyle:off return
Expand Down

0 comments on commit 9f03a71

Please sign in to comment.