Skip to content

Commit

Permalink
add 'override' for scala/scala#5331
Browse files Browse the repository at this point in the history
  • Loading branch information
adriaanm authored and szeiger committed Sep 1, 2016
1 parent 0b81b65 commit f998232
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion slick/src/main/scala/slick/util/InternalArrayQueue.scala
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ private[util] final class InternalArrayQueue[E >: Null <: AnyRef](capacity: Int)
x x
} }


def remove(): Unit = throw new UnsupportedOperationException override def remove(): Unit = throw new UnsupportedOperationException
} }


} }
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -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) = { @inline private[this] def locked[T](f: => T) = {
Expand Down

0 comments on commit f998232

Please sign in to comment.