aboutsummaryrefslogtreecommitdiff
path: root/shared/src/main/scala/xyz/driver/core/core.scala
diff options
context:
space:
mode:
Diffstat (limited to 'shared/src/main/scala/xyz/driver/core/core.scala')
-rw-r--r--shared/src/main/scala/xyz/driver/core/core.scala12
1 files changed, 8 insertions, 4 deletions
diff --git a/shared/src/main/scala/xyz/driver/core/core.scala b/shared/src/main/scala/xyz/driver/core/core.scala
index ea05829..d7bba00 100644
--- a/shared/src/main/scala/xyz/driver/core/core.scala
+++ b/shared/src/main/scala/xyz/driver/core/core.scala
@@ -118,15 +118,19 @@ package core {
implicit def nonEmptyNameOrdering[T]: Ordering[NonEmptyName[T]] = Ordering.by(_.value.value)
}
- @deprecated("Base64 formats are rarely used in core and will be removed. Please implement the wrapper type in " +
- "services, or open an issue if you think it should stay in core.", "driver-core 1.11.5")
+ @deprecated(
+ "Base64 formats are rarely used in core and will be removed. Please implement the wrapper type in " +
+ "services, or open an issue if you think it should stay in core.",
+ "driver-core 1.11.5")
final case class Revision[T](id: String)
object Revision {
implicit def revisionEqual[T]: Equal[Revision[T]] = Equal.equal[Revision[T]](_.id == _.id)
}
- @deprecated("Base64 formats are rarely used in core and will be removed. Please implement the wrapper type in " +
- "services, or open an issue if you think it should stay in core.", "driver-core 1.11.5")
+ @deprecated(
+ "Base64 formats are rarely used in core and will be removed. Please implement the wrapper type in " +
+ "services, or open an issue if you think it should stay in core.",
+ "driver-core 1.11.5")
final case class Base64(value: String)
}