Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2022-03-04 11:36:42 +0000
committerSarika Sinha2022-03-04 11:40:35 +0000
commitfb1d2d00a39d1a24d7cc9b7b9ac23d8c177c195d (patch)
tree2e669f7bf1e8842daac11431e9281e97980cd158
parent2bfca909eb9535fb51ea62bc56e7d9301bbbeea1 (diff)
parent3cbf71c91c16c91cba9f8887b52208c2ad39e9a7 (diff)
downloadeclipse.jdt.debug-P20220314-0500.tar.gz
eclipse.jdt.debug-P20220314-0500.tar.xz
eclipse.jdt.debug-P20220314-0500.zip
-rw-r--r--org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/launcher/LauncherMessages.properties4
-rw-r--r--org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/ValidBreakpointLocationLocator.java4
2 files changed, 5 insertions, 3 deletions
diff --git a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/launcher/LauncherMessages.properties b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/launcher/LauncherMessages.properties
index 342255266..c0b051d71 100644
--- a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/launcher/LauncherMessages.properties
+++ b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/launcher/LauncherMessages.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2021 IBM Corporation and others.
+# Copyright (c) 2000, 2022 IBM Corporation and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
@@ -116,7 +116,7 @@ JavaClasspathTab_Exclude_Test_Code=Exclude &test code
JavaClasspathTab_AttributeLabel_DefaultClasspath=Default classpath
JavaClasspathTab_AttributeLabel_Classpath=Classpath
-JavaDependenciesTab_0=De&pendencies
+JavaDependenciesTab_0=Dependenc&ies
JavaDependenciesTab_Dependencies_3=Dependencies
JavaDependenciesTab_add_modules_label=Add mod&ules:
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/ValidBreakpointLocationLocator.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/ValidBreakpointLocationLocator.java
index 91d386457..7691d940c 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/ValidBreakpointLocationLocator.java
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/ValidBreakpointLocationLocator.java
@@ -1053,6 +1053,8 @@ public class ValidBreakpointLocationLocator extends ASTVisitor {
}
}
+ } else if (body instanceof LambdaExpression) {
+ body.accept(this);
}
}
return false;
@@ -1064,7 +1066,7 @@ public class ValidBreakpointLocationLocator extends ASTVisitor {
String key = methodBinding.getKey();
return key.substring(key.indexOf('.') + 1, key.indexOf('('));
}
-
+
/*
* (non-Javadoc)
*

Back to the top