jglick commented on code in PR #5099: URL: https://github.com/apache/netbeans/pull/5099#discussion_r1049995270
########## java/maven/src/org/netbeans/modules/maven/api/output/OutputUtils.java: ########## @@ -123,7 +123,7 @@ public static OutputListener matchStackTraceLine(String line, FileObject fileObj */ private static StacktraceAttributes matchStackTraceLine(String line) { Matcher match = linePattern.matcher(line); - if (match.matches() && match.groupCount() == 3) { + if (match.find() && match.groupCount() == 3) { Review Comment: Not sure I follow. What concretely would the prefix be? Is this something other than the `[INFO] ` etc. matched by `CommandLineOutputHandler.linePattern`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org For additional commands, e-mail: notifications-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists