1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Bug 375256: Disable assertion to allow existing launches to migrate to the new 'normal' tracepoint terminology.

This commit is contained in:
Marc Khouzam 2012-03-24 13:59:04 -04:00
parent 5d924afa08
commit a13c09f28d

View file

@ -175,7 +175,12 @@ public class GdbDebuggerPage extends AbstractCDebuggerPage implements Observer {
} else if (tracepointMode.equals(IGDBLaunchConfigurationConstants.DEBUGGER_TRACEPOINT_FAST_THEN_NORMAL)) {
fTracepointModeCombo.setText(TP_AUTOMATIC);
} 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);
}
}