diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index e16d538243..6ef6e7d402 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -1,2 +1,5 @@ # Scala Steward: Reformat with scalafmt 3.8.2 1c566cd5182d41f4cc06040fc347ddb4be617779 + +# Scala Steward: Reformat with scalafmt 3.8.3 +c518d497fdc7ef825a140230d9f58f450d106512 diff --git a/.scalafmt.conf b/.scalafmt.conf index 151f8450e4..9aef215200 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.8.2" +version = "3.8.3" preset = default align.preset = some diff --git a/modules/query/shared/src/main/scala/docspell/query/internal/StringUtil.scala b/modules/query/shared/src/main/scala/docspell/query/internal/StringUtil.scala index 7a012c0d2e..d6baf92895 100644 --- a/modules/query/shared/src/main/scala/docspell/query/internal/StringUtil.scala +++ b/modules/query/shared/src/main/scala/docspell/query/internal/StringUtil.scala @@ -76,7 +76,7 @@ object StringUtil { /** String content without the delimiter */ def undelimitedString(endP: P[Unit]): P[String] = escapedToken.backtrack - .orElse(((!endP).with1 ~ P.anyChar).void) + .orElse((!endP.with1 ~ P.anyChar).void) .rep .string .flatMap { str =>