Skip to content

Commit

Permalink
Update scala-library to 2.13.13 in series/3.x (#1306)
Browse files Browse the repository at this point in the history
* Update scala-library to 2.13.13 in series/3.x

* Fix `-Xlint:pattern-shadow` warning

---------

Co-authored-by: Alan Artigao Carreño <alanartigao@gmail.com>
Co-authored-by: a.artigao <a.artigao@stuart.com>
  • Loading branch information
3 people authored Mar 18, 2024
1 parent 2c80150 commit 91f33c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ val munitVersion = "0.7.29"

val scala212 = "2.12.19"

val scala213 = "2.13.12"
val scala213 = "2.13.13"

val scala3 = "3.3.1"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ object HeaderDeserializer {
HeaderDeserializer.instance { bytes =>
@tailrec def go(deserializer: HeaderDeserializer[Either[A, B]]): B =
deserializer.deserialize(bytes) match {
case Right(b) => b
case Left(a) => go(f(a))
case Right(_b) => _b
case Left(_a) => go(f(_a))
}

go(f(a))
Expand Down

0 comments on commit 91f33c8

Please sign in to comment.