Skip to content

Commit 7a82286

Browse files
committed
Remove redundant braces
1 parent d2f301e commit 7a82286

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

webauthn-server-core/src/test/scala/com/yubico/webauthn/data/Generators.scala

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,12 +1088,8 @@ object Generators {
10881088
.timeout(timeout)
10891089

10901090
hints.foreach {
1091-
case Left(h) => {
1092-
b.hints(h.asJava)
1093-
}
1094-
case Right(h) => {
1095-
b.hints(h: _*)
1096-
}
1091+
case Left(h) => b.hints(h.asJava)
1092+
case Right(h) => b.hints(h: _*)
10971093
}
10981094

10991095
b.build()

0 commit comments

Comments
 (0)