Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
|
@@ -173,7 +173,7 @@ private[util] final class InternalArrayQueue[E >: Null <: AnyRef](capacity: Int) |
|
|
x |
|
|
} |
|
|
|
|
|
def remove(): Unit = throw new UnsupportedOperationException |
|
|
override def remove(): Unit = throw new UnsupportedOperationException |
|
|
} |
|
|
|
|
|
} |
|
@@ -209,7 +209,7 @@ class ManagedArrayBlockingQueue[E >: Null <: PrioritizedRunnable](maximumInUse: |
|
|
} |
|
|
} |
|
|
|
|
|
def remove(): Unit = throw new UnsupportedOperationException |
|
|
override def remove(): Unit = throw new UnsupportedOperationException |
|
|
} |
|
|
|
|
|
@inline private[this] def locked[T](f: => T) = { |
|
|