1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Bug 114793: Add an extension point to contribute command factories.

This commit is contained in:
Mikhail Khodjaiants 2006-02-06 21:46:39 +00:00
parent c5831cdf12
commit c2dfa48e4d

View file

@ -150,7 +150,7 @@ public class StandardGDBDebuggerPage extends AbstractCDebuggerPage implements Ob
} }
int miIndex = 0; int miIndex = 0;
for ( int i = 0; i < miVersions.length; ++i ) { for ( int i = 0; i < miVersions.length; ++i ) {
if ( miVersions.equals( mi ) ) { if ( miVersions[i].equals( mi ) ) {
miIndex = i; miIndex = i;
break; break;
} }