You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use primitive boolean instead of the boxed value
* Use String.replace instead of String.replaceAll when regexp is not needed
* Use static inner classes
* Use StringBuilder instead of StringBuffer
* Use method references instead of lambdas
* Replace String concetanation with StringBuilder
* Fixing primitives to String conversion
* Use pattern matching for instanceof
Copy file name to clipboardexpand all lines: org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/console/JavaDebugStackTraceConsoleTracker.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -30,9 +30,9 @@ public class JavaDebugStackTraceConsoleTracker extends JavaConsoleTracker {
30
30
publicvoidmatchFound(PatternMatchEventevent) {
31
31
try {
32
32
// add a hyperlink at "line: 123"
33
-
addHyperlinkAtContent(event, line -> JavaDebugStackTraceHyperlink.extractLineText(line));
0 commit comments