mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 02:18:26 +00:00
Fix compile error new in scala 2.13.9
This commit is contained in:
@ -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)
|
||||
.orElse(((!endP).with1 ~ P.anyChar).void)
|
||||
.rep
|
||||
.string
|
||||
.flatMap { str =>
|
||||
|
Reference in New Issue
Block a user