aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorryanlecompte <lecompte@gmail.com>2013-06-13 16:26:35 -0700
committerryanlecompte <lecompte@gmail.com>2013-06-13 16:26:35 -0700
commit93b3f5e535c509a017a433b72249fc49c79d4a0f (patch)
tree01f8558238c0556f067e821c9d8b09548e4ff715 /core
parent44b8dbaedeb88f12ea911968c524883805f7ad95 (diff)
downloadspark-93b3f5e535c509a017a433b72249fc49c79d4a0f.tar.gz
spark-93b3f5e535c509a017a433b72249fc49c79d4a0f.tar.bz2
spark-93b3f5e535c509a017a433b72249fc49c79d4a0f.zip
drop unneeded ClassManifest implicit
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/spark/util/BoundedPriorityQueue.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/spark/util/BoundedPriorityQueue.scala b/core/src/main/scala/spark/util/BoundedPriorityQueue.scala
index 53ee95a02e..ef01beaea5 100644
--- a/core/src/main/scala/spark/util/BoundedPriorityQueue.scala
+++ b/core/src/main/scala/spark/util/BoundedPriorityQueue.scala
@@ -8,7 +8,7 @@ import scala.collection.generic.Growable
* add/offer methods such that only the top K elements are retained. The top
* K elements are defined by an implicit Ordering[A].
*/
-class BoundedPriorityQueue[A](maxSize: Int)(implicit ord: Ordering[A], mf: ClassManifest[A])
+class BoundedPriorityQueue[A](maxSize: Int)(implicit ord: Ordering[A])
extends JPriorityQueue[A](maxSize, ord) with Growable[A] {
override def offer(a: A): Boolean = {