Skip to content

Commit

Permalink
fix warning. add explicit type (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k authored Oct 19, 2023
1 parent 465bf1b commit 7ee72fc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ trait Implicits {
ct: ClassTag[T]
): TypedEncoder[T] = new typedEncoders.EnumTypedEncoder[T]

implicit def byteStringTypedEncoder = typedEncoders.ByteStringTypedEncoder
implicit def byteStringTypedEncoder: TypedEncoder[ByteString] =
typedEncoders.ByteStringTypedEncoder

implicit def typedEncoderToEncoder[T: ClassTag](implicit
ev: TypedEncoder[T]
Expand Down

0 comments on commit 7ee72fc

Please sign in to comment.