From e21f968dba3c9aaba56376212b23183333c0a123 Mon Sep 17 00:00:00 2001 From: Sougandh S Date: Sat, 6 Jun 2026 05:19:15 +0530 Subject: [PATCH] Remove inner try block --- .../core/groups/GroupLaunchConfigurationDelegate.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/debug/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunchConfigurationDelegate.java b/debug/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunchConfigurationDelegate.java index 474eb81acf2..ce8414e96d9 100644 --- a/debug/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunchConfigurationDelegate.java +++ b/debug/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunchConfigurationDelegate.java @@ -402,12 +402,8 @@ public static void storeLaunchElements(ILaunchConfigurationWorkingCopy configura public static void removeLaunchElements(ILaunchConfigurationWorkingCopy configuration) { try { for (String attr : configuration.getAttributes().keySet()) { - try { - if (attr.startsWith(MULTI_LAUNCH_CONSTANTS_PREFIX)) { - configuration.removeAttribute(attr); - } - } catch (Exception e) { - DebugPlugin.log(e); + if (attr.startsWith(MULTI_LAUNCH_CONSTANTS_PREFIX)) { + configuration.removeAttribute(attr); } } } catch (CoreException e) {