ScalafmtAll

This commit is contained in:
Eike Kettner
2020-06-23 00:18:59 +02:00
parent a3e16e57de
commit e06a3f8fdd
6 changed files with 20 additions and 18 deletions

View File

@ -2,7 +2,7 @@ package docspell.common
object DocspellSystem {
val taskGroup = Ident.unsafe("docspell-system")
val taskGroup = Ident.unsafe("docspell-system")
val migrationTaskTracker = Ident.unsafe("full-text-index-tracker")
}

View File

@ -16,7 +16,7 @@ case class Ident(id: String) {
def nonEmpty: Boolean =
!isEmpty
def / (next: Ident): Ident =
def /(next: Ident): Ident =
new Ident(id + "." + next.id)
}