Skip to content

Commit

Permalink
Update scala-compiler, scala-library, ... to 2.13.14 (#5362)
Browse files Browse the repository at this point in the history
Co-authored-by: Michel Davit <micheld@spotify.com>
  • Loading branch information
2 people authored and clairemcginty committed May 30, 2024
1 parent 1055515 commit e54a229
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ ThisBuild / developers := List(
)

// scala versions
val scala213 = "2.13.13"
val scala213 = "2.13.14"
val scala212 = "2.12.19"
val scalaDefault = scala213

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import com.spotify.scio.schemas.{ArrayType, MapType, RawRecord, Schema, Type}
import org.apache.beam.sdk.schemas.JavaBeanSchema
import org.apache.beam.sdk.schemas.Schema.{FieldType, LogicalType}

import scala.annotation.nowarn
import scala.reflect.ClassTag

trait JavaInstances {
Expand Down Expand Up @@ -67,9 +66,6 @@ trait JavaInstances {
): Schema[java.util.Map[K, V]] =
MapType(ks, vs, identity, identity)

@nowarn(
"msg=evidence parameter evidence.* of type com.spotify.scio.IsJavaBean\\[.\\] in .* is never used"
)
implicit def javaBeanSchema[T: IsJavaBean: ClassTag]: RawRecord[T] =
RawRecord[T](new JavaBeanSchema())

Expand Down

0 comments on commit e54a229

Please sign in to comment.