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:
parent
d02be766a4
commit
0a710a5566
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|
Loading…
Add table
Reference in a new issue