1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 01:36:01 +02:00

Do not log CoreException thrown from the 'decrementInstallCount' method.

This commit is contained in:
Mikhail Khodjaiants 2004-05-12 16:10:54 +00:00
parent d02be766a4
commit 0a710a5566
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2004-05-12 Mikhail Khodjaiants
Do not log CoreException thrown from the 'decrementInstallCount' method.
* CBreakpointUpdater.java
2004-05-12 Mikhail Khodjaiants 2004-05-12 Mikhail Khodjaiants
Implemented the color highlighting of the source lines in the Disassembly view. Implemented the color highlighting of the source lines in the Disassembly view.
* plugin.xml * plugin.xml

View file

@ -107,7 +107,8 @@ public class CBreakpointUpdater implements ICBreakpointListener {
breakpoint.delete(); breakpoint.delete();
} }
catch( CoreException e ) { catch( CoreException e ) {
CDebugUIPlugin.log( e.getStatus() ); // ensureMarker throws this exception
// if breakpoint has already been deleted
} }
} }
} ); } );