Skip to content

Commit

Permalink
Fix regex for matching longer numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
BarkingBad authored Sep 7, 2021
1 parent d374a1a commit 3f39c37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class StacktracesInspector private (st: List[StackTraceElement], ctp: Map[String
case head :: Nil =>
(Some(createPrettyStackTraceElement(head, ste.getLineNumber)), lambdaUnraveler)
case _ =>
val extraSuffix = """(.*)\$(\d)""".r
val extraSuffix = """(.*)\$(\d*)""".r
decoded match
case extraSuffix(name, suffix) =>
processDefDefs(defdefs, Some(name))
Expand Down

0 comments on commit 3f39c37

Please sign in to comment.