Skip to content

Commit

Permalink
Merge pull request #1603 from szeiger/wip/scala-2.12.0-rc1-compatibility
Browse files Browse the repository at this point in the history
add 'override' for scala/scala#5331
  • Loading branch information
szeiger committed Sep 1, 2016
2 parents 0b81b65 + f998232 commit 01d3c89
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
Expand Up @@ -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
}

}
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) = {
Expand Down

0 comments on commit 01d3c89

Please sign in to comment.