File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/actions Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11/*******************************************************************************
2- * Copyright (c) 2000, 2012 IBM Corporation and others.
2+ * Copyright (c) 2000, 2025 IBM Corporation and others.
33 *
44 * This program and the accompanying materials
55 * are made available under the terms of the Eclipse Public License 2.0
@@ -47,7 +47,7 @@ public boolean isEnabledFor(IStructuredSelection selection) {
4747 Iterator <?> iter = selection .iterator ();
4848 while (iter .hasNext ()) {
4949 Object element = iter .next ();
50- if (!(element instanceof IJavaMethodBreakpoint )) {
50+ if (!(element instanceof IJavaMethodBreakpoint javaMethodBp && ! javaMethodBp . isLambdaBreakpoint () )) {
5151 return false ;
5252 }
5353
Original file line number Diff line number Diff line change 11/*******************************************************************************
2- * Copyright (c) 2000, 2012 IBM Corporation and others.
2+ * Copyright (c) 2000, 2025 IBM Corporation and others.
33 *
44 * This program and the accompanying materials
55 * are made available under the terms of the Eclipse Public License 2.0
@@ -47,7 +47,7 @@ public boolean isEnabledFor(IStructuredSelection selection) {
4747 Iterator <?> iter = selection .iterator ();
4848 while (iter .hasNext ()) {
4949 Object element = iter .next ();
50- if (!(element instanceof IJavaMethodBreakpoint )) {
50+ if (!(element instanceof IJavaMethodBreakpoint javaMethodBp && ! javaMethodBp . isLambdaBreakpoint () )) {
5151 return false ;
5252 }
5353
You can’t perform that action at this time.
0 commit comments