mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-05 07:15:39 +02:00
comment out the exception printstackTrace.
This commit is contained in:
parent
f3745131b9
commit
3497250607
1 changed files with 4 additions and 4 deletions
|
@ -222,7 +222,7 @@ public class MIInferior extends Process {
|
||||||
inPiped = null;
|
inPiped = null;
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
//e.printStackTrace();
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
if (errPiped != null) {
|
if (errPiped != null) {
|
||||||
|
@ -230,7 +230,7 @@ public class MIInferior extends Process {
|
||||||
errPiped = null;
|
errPiped = null;
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
//e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
// If pty is not null then we are using a master/slave terminal
|
// If pty is not null then we are using a master/slave terminal
|
||||||
|
@ -240,7 +240,7 @@ public class MIInferior extends Process {
|
||||||
try {
|
try {
|
||||||
in.close();
|
in.close();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
//e.printStackTrace();
|
||||||
}
|
}
|
||||||
in = null;
|
in = null;
|
||||||
}
|
}
|
||||||
|
@ -248,7 +248,7 @@ public class MIInferior extends Process {
|
||||||
try {
|
try {
|
||||||
out.close();
|
out.close();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
//e.printStackTrace();
|
||||||
}
|
}
|
||||||
out = null;
|
out = null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue