Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2012-11-08 01:59:56 +0000
committerEugene Tarassov2012-11-08 01:59:56 +0000
commit5657bb35c04fcd1e34d6f7aba9f20b99b3b34ce2 (patch)
tree4f3fb7617fc3243669f77209f993a45833e71d55 /plugins/org.eclipse.tcf.cdt.ui
parent7335ed8d26592cd499b7fb607eace4502f8e71e1 (diff)
downloadorg.eclipse.tcf-5657bb35c04fcd1e34d6f7aba9f20b99b3b34ce2.tar.gz
org.eclipse.tcf-5657bb35c04fcd1e34d6f7aba9f20b99b3b34ce2.tar.xz
org.eclipse.tcf-5657bb35c04fcd1e34d6f7aba9f20b99b3b34ce2.zip
TCF Debugger: better error reporting when starting local TCF agent
Diffstat (limited to 'plugins/org.eclipse.tcf.cdt.ui')
-rw-r--r--plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/TCFBreakpointStatusListener.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/TCFBreakpointStatusListener.java b/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/TCFBreakpointStatusListener.java
index ecdad2606..5367ba7e8 100644
--- a/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/TCFBreakpointStatusListener.java
+++ b/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/TCFBreakpointStatusListener.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010, 2011 Wind River Systems, Inc. and others.
+ * Copyright (c) 2010, 2012 Wind River Systems, Inc. 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
@@ -84,7 +84,7 @@ class TCFBreakpointStatusListener {
public void breakpointAdded(IBreakpoint breakpoint) {}
public void breakpointChanged(IBreakpoint breakpoint, IMarkerDelta delta) {
- updateBreakpoint(breakpoint, false);
+ updateBreakpoint(breakpoint, false);
}
public void breakpointRemoved(final IBreakpoint breakpoint, IMarkerDelta delta) {
updateBreakpoint(breakpoint, true);
@@ -104,10 +104,11 @@ class TCFBreakpointStatusListener {
createOrUpdateBreakpoint(marker_id);
}
});
-
- } catch (CoreException e) {}
+ }
+ catch (CoreException e) {
+ }
}
-
+
private void updateStatus(String id, IBreakpoint bp) {
if (bp instanceof ICBreakpoint) {
boolean ok = false;

Back to the top