Skip to content

Commit b953571

Browse files
Address compilation warning
1 parent 6d5a36f commit b953571

File tree

1 file changed

+1
-1
lines changed
  • modules/config/src/main/scala-2.12/scala/cli/config

1 file changed

+1
-1
lines changed

modules/config/src/main/scala-2.12/scala/cli/config/Util.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ private[config] object Util {
66
def toBooleanOption: Option[Boolean] =
77
try Some(s.toBoolean)
88
catch {
9-
case e: IllegalArgumentException =>
9+
case _: IllegalArgumentException =>
1010
None
1111
}
1212
}

0 commit comments

Comments
 (0)