We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb27df2 commit 10800c9Copy full SHA for 10800c9
patterns/java
@@ -1,8 +1,8 @@
1
JAVACLASS (?:[a-zA-Z$_][a-zA-Z$_0-9]*\.)*[a-zA-Z$_][a-zA-Z$_0-9]*
2
#Space is an allowed character to match special cases like 'Native Method' or 'Unknown Source'
3
JAVAFILE (?:[A-Za-z0-9_. -]+)
4
-#Allow special <init> method
5
-JAVAMETHOD (?:(<init>)|[a-zA-Z$_][a-zA-Z$_0-9]*)
+#Allow special <init>, <clinit> methods
+JAVAMETHOD (?:(<(?:cl)?init>)|[a-zA-Z$_][a-zA-Z$_0-9]*)
6
#Line number is optional in special cases 'Native method' or 'Unknown source'
7
JAVASTACKTRACEPART %{SPACE}at %{JAVACLASS:class}\.%{JAVAMETHOD:method}\(%{JAVAFILE:file}(?::%{NUMBER:line})?\)
8
# Java Logs
0 commit comments