Update to Scala 2.12.10 (#27734)
This commit is contained in:
parent
9b8c72fadd
commit
3b17c01c68
3 changed files with 3 additions and 3 deletions
|
|
@ -389,7 +389,7 @@ object ByteString {
|
||||||
|
|
||||||
private[akka] object ByteStrings extends Companion {
|
private[akka] object ByteStrings extends Companion {
|
||||||
def apply(bytestrings: Vector[ByteString1]): ByteString =
|
def apply(bytestrings: Vector[ByteString1]): ByteString =
|
||||||
new ByteStrings(bytestrings, (0 /: bytestrings)(_ + _.length))
|
new ByteStrings(bytestrings, bytestrings.foldLeft(0)(_ + _.length))
|
||||||
|
|
||||||
def apply(bytestrings: Vector[ByteString1], length: Int): ByteString = new ByteStrings(bytestrings, length)
|
def apply(bytestrings: Vector[ByteString1], length: Int): ByteString = new ByteStrings(bytestrings, length)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ object Dependencies {
|
||||||
val protobufJavaVersion = "3.9.2"
|
val protobufJavaVersion = "3.9.2"
|
||||||
val logbackVersion = "1.2.3"
|
val logbackVersion = "1.2.3"
|
||||||
|
|
||||||
val scala212Version = "2.12.9"
|
val scala212Version = "2.12.10"
|
||||||
val scala213Version = "2.13.0"
|
val scala213Version = "2.13.0"
|
||||||
|
|
||||||
val reactiveStreamsVersion = "1.0.3"
|
val reactiveStreamsVersion = "1.0.3"
|
||||||
|
|
|
||||||
|
|
@ -177,7 +177,7 @@ object BootstrapGenjavadoc extends AutoPlugin {
|
||||||
|
|
||||||
override lazy val projectSettings = UnidocRoot.CliOptions.genjavadocEnabled
|
override lazy val projectSettings = UnidocRoot.CliOptions.genjavadocEnabled
|
||||||
.ifTrue(Seq(
|
.ifTrue(Seq(
|
||||||
unidocGenjavadocVersion := "0.13",
|
unidocGenjavadocVersion := "0.14",
|
||||||
scalacOptions in Compile ++= Seq("-P:genjavadoc:fabricateParams=true", "-P:genjavadoc:suppressSynthetic=false")))
|
scalacOptions in Compile ++= Seq("-P:genjavadoc:fabricateParams=true", "-P:genjavadoc:suppressSynthetic=false")))
|
||||||
.getOrElse(Nil)
|
.getOrElse(Nil)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue