Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ private[darwin] object ByteArrayUtils {
os.write((l >>> 40).asInstanceOf[Int])
os.write((l >>> 48).asInstanceOf[Int])
os.write((l >>> 56).asInstanceOf[Int])
case other: Any =>
throw new IllegalArgumentException("Unknown ByteOrder: " + other)
}
}
}
Expand Down Expand Up @@ -80,6 +82,8 @@ private[darwin] object ByteArrayUtils {
os.write((l >>> 8))
os.write((l >>> 16))
os.write((l >>> 24))
case other: Any =>
throw new IllegalArgumentException("Unknown ByteOrder: " + other)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object ConfigurationKeys {
val STRICT = "strict"
val PERMISSIVE = "permissive"

trait Mode
sealed trait Mode

object Mode {
def parse(string: String): Mode = {
Expand Down
4 changes: 2 additions & 2 deletions project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
object Versions {
val scala_211 = "2.11.12"
val scala_210 = "2.10.7"
val scala = "2.12.12"
val scala_213 = "2.13.3"
val scala = "2.12.13"
val scala_213 = "2.13.5"
val crossScalaVersions = Seq(scala_210, scala_211, scala, scala_213)
}