|
1 | 1 | /******************************************************************************* |
2 | | - * Copyright (c) 2000, 2025 IBM Corporation and others. |
| 2 | + * Copyright (c) 2000, 2026 IBM Corporation and others. |
3 | 3 | * |
4 | 4 | * This program and the accompanying materials |
5 | 5 | * are made available under the terms of the Eclipse Public License 2.0 |
@@ -1416,13 +1416,16 @@ public static ImageDescriptor getImageDescriptor(String bundleName, String path) |
1416 | 1416 | */ |
1417 | 1417 | public static boolean doLaunchConfigurationFiltering(ILaunchConfiguration config) { |
1418 | 1418 | boolean ret = true; |
1419 | | - if(DebugUIPlugin.getDefault().getPreferenceStore().getBoolean(IInternalDebugUIConstants.PREF_FILTER_LAUNCH_CLOSED)) { |
| 1419 | + if (DebugUIPlugin.getDefault().getPreferenceStore() |
| 1420 | + .getBoolean(IInternalDebugUIConstants.PREF_FILTER_LAUNCH_CLOSED)) { |
1420 | 1421 | ret &= new ClosedProjectFilter().select(null, null, config); |
1421 | 1422 | } |
1422 | | - if(DebugUIPlugin.getDefault().getPreferenceStore().getBoolean(IInternalDebugUIConstants.PREF_FILTER_LAUNCH_DELETED)) { |
| 1423 | + if (DebugUIPlugin.getDefault().getPreferenceStore() |
| 1424 | + .getBoolean(IInternalDebugUIConstants.PREF_FILTER_LAUNCH_DELETED)) { |
1423 | 1425 | ret &= new DeletedProjectFilter().select(null, null, config); |
1424 | 1426 | } |
1425 | | - if(DebugUIPlugin.getDefault().getPreferenceStore().getBoolean(IInternalDebugUIConstants.PREF_FILTER_LAUNCH_TYPES)) { |
| 1427 | + if (DebugUIPlugin.getDefault().getPreferenceStore() |
| 1428 | + .getBoolean(IInternalDebugUIConstants.PREF_FILTER_LAUNCH_TYPES)) { |
1426 | 1429 | try { |
1427 | 1430 | ret &= new LaunchConfigurationTypeFilter().select(null, null, config.getType()); |
1428 | 1431 | } |
|
0 commit comments