1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

was throwing a wrong illegalException.

This commit is contained in:
Alain Magloire 2002-08-21 16:29:49 +00:00
parent e3ddcc2811
commit 6c5fd5a995

View file

@ -127,8 +127,9 @@ public class MIInferior extends Process {
MIGDBShowExitCodeInfo info = code.getMIGDBShowExitCodeInfo();
return info.getCode();
} catch (MIException e) {
return 0;
// no rethrown.
}
return 0;
}
}
throw new IllegalThreadStateException();