This repository was archived by the owner on Jan 13, 2025. It is now read-only.
File tree 1 file changed +3
-3
lines changed
core/jvm/src/main/scala/zio/sql 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ trait TypeTagModule { self: SelectModule with ExprModule with TableModule =>
16
16
trait Tag [+ A ] {
17
17
private [zio] def cast (a : Any ): A = a.asInstanceOf [A ]
18
18
}
19
- sealed trait TypeTag [+ A ] extends Tag [A ]
19
+ sealed trait TypeTag [A ] extends Tag [A ]
20
20
21
21
object TypeTag {
22
- sealed trait NotNull [+ A ] extends TypeTag [A ]
22
+ sealed trait NotNull [A ] extends TypeTag [A ]
23
23
implicit case object TBigDecimal extends NotNull [BigDecimal ]
24
24
implicit case object TBoolean extends NotNull [Boolean ]
25
25
implicit case object TByte extends NotNull [Byte ]
@@ -39,7 +39,7 @@ trait TypeTagModule { self: SelectModule with ExprModule with TableModule =>
39
39
implicit case object TString extends NotNull [String ]
40
40
implicit case object TUUID extends NotNull [UUID ]
41
41
implicit case object TZonedDateTime extends NotNull [ZonedDateTime ]
42
- sealed case class TDialectSpecific [+ A ](typeTagExtension : TypeTagExtension [A ]) extends NotNull [A ]
42
+ sealed case class TDialectSpecific [A ](typeTagExtension : TypeTagExtension [A ]) extends NotNull [A ]
43
43
sealed case class Nullable [A : NotNull ]() extends TypeTag [Option [A ]] {
44
44
def typeTag : TypeTag [A ] = implicitly[TypeTag [A ]]
45
45
}
You can’t perform that action at this time.
0 commit comments