mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-09 01:05:38 +02:00
Bug 375256: Disable assertion to allow existing launches to migrate to the new 'normal' tracepoint terminology.
This commit is contained in:
parent
5d924afa08
commit
a13c09f28d
1 changed files with 6 additions and 1 deletions
|
@ -175,7 +175,12 @@ public class GdbDebuggerPage extends AbstractCDebuggerPage implements Observer {
|
||||||
} else if (tracepointMode.equals(IGDBLaunchConfigurationConstants.DEBUGGER_TRACEPOINT_FAST_THEN_NORMAL)) {
|
} else if (tracepointMode.equals(IGDBLaunchConfigurationConstants.DEBUGGER_TRACEPOINT_FAST_THEN_NORMAL)) {
|
||||||
fTracepointModeCombo.setText(TP_AUTOMATIC);
|
fTracepointModeCombo.setText(TP_AUTOMATIC);
|
||||||
} else {
|
} else {
|
||||||
assert false : "Unknown Tracepoint Mode: " + tracepointMode; //$NON-NLS-1$
|
// Comment out assertion in the short term to allow for existing launches
|
||||||
|
// that used the old names to migrate to the new names.
|
||||||
|
// It can be uncommented after we have released Juno.
|
||||||
|
// Bug 375256
|
||||||
|
//
|
||||||
|
// assert false : "Unknown Tracepoint Mode: " + tracepointMode; //$NON-NLS-1$
|
||||||
fTracepointModeCombo.setText(TP_NORMAL_ONLY);
|
fTracepointModeCombo.setText(TP_NORMAL_ONLY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue