mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Cleanup.
This commit is contained in:
parent
34c3e374c4
commit
01b01243e5
5 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-12-27 Mikhail Khodjaiants
|
||||||
|
Cleanup.
|
||||||
|
* BreakpointManager.java
|
||||||
|
* RegisterManager.java
|
||||||
|
|
||||||
2005-12-27 Mikhail Khodjaiants
|
2005-12-27 Mikhail Khodjaiants
|
||||||
Bug 109526: Support Eclipse-LazyStart and deprecate Eclipse-AutoStart.
|
Bug 109526: Support Eclipse-LazyStart and deprecate Eclipse-AutoStart.
|
||||||
* MANIFEST.MF
|
* MANIFEST.MF
|
||||||
|
|
|
@ -775,14 +775,11 @@ public class BreakpointManager extends Manager {
|
||||||
// Put the condition now.
|
// Put the condition now.
|
||||||
String exprCond = null;
|
String exprCond = null;
|
||||||
int ignoreCount = 0;
|
int ignoreCount = 0;
|
||||||
String[] threadIds = null;
|
|
||||||
StringBuffer line = new StringBuffer();
|
|
||||||
|
|
||||||
ICDICondition condition = watchpoint.getCondition();
|
ICDICondition condition = watchpoint.getCondition();
|
||||||
if (condition != null) {
|
if (condition != null) {
|
||||||
exprCond = condition.getExpression();
|
exprCond = condition.getExpression();
|
||||||
ignoreCount = condition.getIgnoreCount();
|
ignoreCount = condition.getIgnoreCount();
|
||||||
threadIds = condition.getThreadIds();
|
|
||||||
}
|
}
|
||||||
if (exprCond != null && exprCond.length() > 0) {
|
if (exprCond != null && exprCond.length() > 0) {
|
||||||
MIBreakCondition breakCondition = factory.createMIBreakCondition(no, exprCond);
|
MIBreakCondition breakCondition = factory.createMIBreakCondition(no, exprCond);
|
||||||
|
|
|
@ -199,7 +199,7 @@ public class RegisterManager extends Manager {
|
||||||
Register reg = findRegister(regDesc);
|
Register reg = findRegister(regDesc);
|
||||||
if (reg == null) {
|
if (reg == null) {
|
||||||
try {
|
try {
|
||||||
String name = regDesc.getQualifiedName(); //$NON-NLS-1$
|
String name = regDesc.getQualifiedName();
|
||||||
Target target = (Target)regDesc.getTarget();
|
Target target = (Target)regDesc.getTarget();
|
||||||
MISession mi = target.getMISession();
|
MISession mi = target.getMISession();
|
||||||
CommandFactory factory = mi.getCommandFactory();
|
CommandFactory factory = mi.getCommandFactory();
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2005-12-27 Mikhail Khodjaiants
|
||||||
|
Cleanup.
|
||||||
|
* MIUIPlugin.java
|
||||||
|
|
||||||
2005-12-27 Mikhail Khodjaiants
|
2005-12-27 Mikhail Khodjaiants
|
||||||
Bug 109526: Support Eclipse-LazyStart and deprecate Eclipse-AutoStart.
|
Bug 109526: Support Eclipse-LazyStart and deprecate Eclipse-AutoStart.
|
||||||
* MANIFEST.MF
|
* MANIFEST.MF
|
||||||
|
|
|
@ -60,7 +60,7 @@ public class MIUIPlugin extends AbstractUIPlugin {
|
||||||
// If the default instance is not yet initialized,
|
// If the default instance is not yet initialized,
|
||||||
// return a static identifier. This identifier must
|
// return a static identifier. This identifier must
|
||||||
// match the plugin id defined in plugin.xml
|
// match the plugin id defined in plugin.xml
|
||||||
return PLUGIN_ID; //$NON-NLS-1$
|
return PLUGIN_ID;
|
||||||
}
|
}
|
||||||
return getDefault().getBundle().getSymbolicName();
|
return getDefault().getBundle().getSymbolicName();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue