1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

Make compatible with Java 1.4.

This commit is contained in:
Mikhail Khodjaiants 2006-01-23 21:37:52 +00:00
parent 143d697e5e
commit 910021b305

View file

@ -135,7 +135,7 @@ public class GDBCDIDebugger2 extends AbstractGDBCDIDebugger {
miSession.getMIInferior().setConnected();
}
catch( MIException e ) {
throw newCoreException( MessageFormat.format( MIPlugin.getResourceString( "src.GDBCDIDebugger2.2" ), new Integer[] { Integer.valueOf( pid ) } ), e ); //$NON-NLS-1$
throw newCoreException( MessageFormat.format( MIPlugin.getResourceString( "src.GDBCDIDebugger2.2" ), new Integer[] { new Integer( pid ) } ), e ); //$NON-NLS-1$
}
// @@@ We have to set the suspended state manually
miSession.getMIInferior().setSuspended();