Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/propertypages/ModulePropertyPage.java')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/propertypages/ModulePropertyPage.java13
1 files changed, 5 insertions, 8 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/propertypages/ModulePropertyPage.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/propertypages/ModulePropertyPage.java
index a8d337fa4be..3c3cedeabbf 100644
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/propertypages/ModulePropertyPage.java
+++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/propertypages/ModulePropertyPage.java
@@ -89,14 +89,11 @@ public class ModulePropertyPage extends PropertyPage {
final ICModule module = getModule();
if (module != null) {
- DebugPlugin.getDefault().asyncExec(new Runnable() {
- @Override
- public void run() {
- try {
- module.setSymbolsFileName(path);
- } catch (DebugException e) {
- failed(PropertyPageMessages.getString("ModulePropertyPage.15"), e); //$NON-NLS-1$
- }
+ DebugPlugin.getDefault().asyncExec(() -> {
+ try {
+ module.setSymbolsFileName(path);
+ } catch (DebugException e) {
+ failed(PropertyPageMessages.getString("ModulePropertyPage.15"), e); //$NON-NLS-1$
}
});
}

Back to the top