Skip to content

Commit

Permalink
Merge pull request #953 from scala-steward/update/2.10.x/patches
Browse files Browse the repository at this point in the history
[2.10.x] Patch updates
  • Loading branch information
mkurz authored Dec 13, 2023
2 parents 10cd132 + fc31769 commit 1a90fa8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@

# Scala Steward: Reformat with scalafmt 3.7.5
d284d98d04e21841acd9c5cd4640279c877459c6

# Scala Steward: Reformat with scalafmt 3.7.17
f01d82bf09875cb097d23941663a89689e1a9af7
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.7.15
version = 3.7.17
runner.dialect = Scala213Source3

align.preset = true
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ val isScala3 = Def.setting {

def specs2(scalaVersion: String) =
Seq("core", "junit").map { n =>
("org.specs2" %% s"specs2-$n" % "4.20.2") % Test
("org.specs2" %% s"specs2-$n" % "4.20.3") % Test
}

val jacksonDatabindVersion = "2.14.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ import scala.collection.mutable.ArrayBuffer
private[json] class ImmutableLinkedHashMap[A, +B](underlying: JLinkedHashMap[A, B])
extends AbstractMap[A, B]
with Map[A, B]
with MapLike[A, B, ImmutableLinkedHashMap[A, B]] with Serializable {
with MapLike[A, B, ImmutableLinkedHashMap[A, B]]
with Serializable {

override def get(key: A): Option[B] = Option(underlying.get(key))

Expand Down

0 comments on commit 1a90fa8

Please sign in to comment.