Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorMikhail Khodjaiants2004-05-12 16:10:54 +0000
committerMikhail Khodjaiants2004-05-12 16:10:54 +0000
commit0a710a556664d35b218e58a484a58e2bd23e0eec (patch)
tree4bfff1ab4e8bb4165c4938fb91bd3815e470e348 /debug
parentd02be766a4f8eba3b8745b5f58464352db9e408a (diff)
downloadorg.eclipse.cdt-0a710a556664d35b218e58a484a58e2bd23e0eec.tar.gz
org.eclipse.cdt-0a710a556664d35b218e58a484a58e2bd23e0eec.tar.xz
org.eclipse.cdt-0a710a556664d35b218e58a484a58e2bd23e0eec.zip
Do not log CoreException thrown from the 'decrementInstallCount' method.
Diffstat (limited to 'debug')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/ChangeLog4
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/CBreakpointUpdater.java3
2 files changed, 6 insertions, 1 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/ChangeLog b/debug/org.eclipse.cdt.debug.ui/ChangeLog
index 4b041164d6c..123638d8597 100644
--- a/debug/org.eclipse.cdt.debug.ui/ChangeLog
+++ b/debug/org.eclipse.cdt.debug.ui/ChangeLog
@@ -1,4 +1,8 @@
2004-05-12 Mikhail Khodjaiants
+ Do not log CoreException thrown from the 'decrementInstallCount' method.
+ * CBreakpointUpdater.java
+
+2004-05-12 Mikhail Khodjaiants
Implemented the color highlighting of the source lines in the Disassembly view.
* plugin.xml
* IInternalCDebugUIConstants.java
diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/CBreakpointUpdater.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/CBreakpointUpdater.java
index 5e686fdfce2..d75fd0028cc 100644
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/CBreakpointUpdater.java
+++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/CBreakpointUpdater.java
@@ -107,7 +107,8 @@ public class CBreakpointUpdater implements ICBreakpointListener {
breakpoint.delete();
}
catch( CoreException e ) {
- CDebugUIPlugin.log( e.getStatus() );
+ // ensureMarker throws this exception
+ // if breakpoint has already been deleted
}
}
} );

Back to the top