Skip to content

Commit 5594342

Browse files
Reformat with scalafmt 3.10.7
Executed command: scalafmt --non-interactive
1 parent e2d7c49 commit 5594342

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parser/shared/src/test/scala/jawn/SyntaxCheck.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ class SyntaxCheck extends Properties("SyntaxCheck") with SyntaxCheckPlatform {
189189
def isStackSafe(s: String): Try[Boolean] =
190190
try Success(isValidSyntax(s))
191191
catch {
192-
case (e: StackOverflowError) => Failure(e)
193-
case (e: Exception) => Failure(e)
192+
case e: StackOverflowError => Failure(e)
193+
case e: Exception => Failure(e)
194194
}
195195

196196
val S = " " * 2000

0 commit comments

Comments
 (0)