diff --git a/design/build.sbt b/design/build.sbt index 6ceeb6bc..4a8ad97d 100644 --- a/design/build.sbt +++ b/design/build.sbt @@ -3,8 +3,6 @@ def scalacOptionsVersion(scalaVersion: String): Seq[String] = { Seq() ++ { // If we're building with Scala > 2.11, enable the compile option - // switch to support our anonymous Bundle definitions: - // https://github.com/scala/bug/issues/10047 CrossVersion.partialVersion(scalaVersion) match { case Some((2, scalaMajor: Long)) if scalaMajor < 12 => Seq() case _ => Seq("-Xsource:2.11")