Skip to content

Commit fb1d2d0

Browse files
committed
Bug 577731 - Merge remote-tracking branch 'origin/master' into BETA_JAVA18
Change-Id: I0e0b1fbda8c91597774da1ba7a54dbecb9d0004f
2 parents 2bfca90 + 3cbf71c commit fb1d2d0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/launcher/LauncherMessages.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
###############################################################################
2-
# Copyright (c) 2000, 2021 IBM Corporation and others.
2+
# Copyright (c) 2000, 2022 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
@@ -116,7 +116,7 @@ JavaClasspathTab_Exclude_Test_Code=Exclude &test code
116116
JavaClasspathTab_AttributeLabel_DefaultClasspath=Default classpath
117117
JavaClasspathTab_AttributeLabel_Classpath=Classpath
118118

119-
JavaDependenciesTab_0=De&pendencies
119+
JavaDependenciesTab_0=Dependenc&ies
120120
JavaDependenciesTab_Dependencies_3=Dependencies
121121
JavaDependenciesTab_add_modules_label=Add mod&ules:
122122

org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/ValidBreakpointLocationLocator.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,6 +1053,8 @@ public boolean visit(LambdaExpression node) {
10531053

10541054
}
10551055
}
1056+
} else if (body instanceof LambdaExpression) {
1057+
body.accept(this);
10561058
}
10571059
}
10581060
return false;
@@ -1064,7 +1066,7 @@ private String toMethodName(IMethodBinding methodBinding) {
10641066
String key = methodBinding.getKey();
10651067
return key.substring(key.indexOf('.') + 1, key.indexOf('('));
10661068
}
1067-
1069+
10681070
/*
10691071
* (non-Javadoc)
10701072
*

0 commit comments

Comments
 (0)