1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

comment out the exception printstackTrace.

This commit is contained in:
Alain Magloire 2002-09-07 14:47:25 +00:00
parent f3745131b9
commit 3497250607

View file

@ -222,7 +222,7 @@ public class MIInferior extends Process {
inPiped = null;
}
} catch (IOException e) {
e.printStackTrace();
//e.printStackTrace();
}
try {
if (errPiped != null) {
@ -230,7 +230,7 @@ public class MIInferior extends Process {
errPiped = null;
}
} catch (IOException e) {
e.printStackTrace();
//e.printStackTrace();
}
// If pty is not null then we are using a master/slave terminal
@ -240,7 +240,7 @@ public class MIInferior extends Process {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
//e.printStackTrace();
}
in = null;
}
@ -248,7 +248,7 @@ public class MIInferior extends Process {
try {
out.close();
} catch (IOException e) {
e.printStackTrace();
//e.printStackTrace();
}
out = null;
}