Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/dsf
diff options
context:
space:
mode:
authorMarc Khouzam2015-02-13 21:20:47 +0000
committerMarc Khouzam2015-02-13 21:20:47 +0000
commit04f7079574b88c3927327e0df20e09a80bb90a67 (patch)
tree02986a14ef9d69837a62bfb89d1c6f7e656ac545 /dsf
parent59e43f82530a4e4e676f26a6e93e326e3c3086a3 (diff)
downloadorg.eclipse.cdt-04f7079574b88c3927327e0df20e09a80bb90a67.tar.gz
org.eclipse.cdt-04f7079574b88c3927327e0df20e09a80bb90a67.tar.xz
org.eclipse.cdt-04f7079574b88c3927327e0df20e09a80bb90a67.zip
Remove dead code
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
Diffstat (limited to 'dsf')
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/BreakpointsMediator.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/BreakpointsMediator.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/BreakpointsMediator.java
index 26805a03335..586ca3a4fac 100644
--- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/BreakpointsMediator.java
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/BreakpointsMediator.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2010 Wind River and others.
+ * Copyright (c) 2007, 2015 Wind River and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -562,11 +562,6 @@ public class BreakpointsMediator extends AbstractDsfService implements IBreakpoi
// Get the list of corresponding back-end breakpoints
final List<IBreakpointDMContext> oldBpContexts = new ArrayList<IBreakpointDMContext>(breakpointIDs.get(breakpoint));
- if (oldBpContexts == null) {
- rm.setStatus(new Status(IStatus.ERROR, DsfPlugin.PLUGIN_ID, INVALID_HANDLE, "Invalid breakpoint", null)); //$NON-NLS-1$
- rm.done();
- return;
- }
// Calculate the list of attributes maps that have not changed.
// Immediately add these to the list of new breakpoint contexts,

Back to the top