1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-11 18:25:40 +02:00

remove debug prints

This commit is contained in:
Alain Magloire 2002-08-30 04:58:55 +00:00
parent 6306e33ea1
commit e048dcfe95
3 changed files with 12 additions and 12 deletions

View file

@ -79,11 +79,11 @@ public class StackFrame extends CObject implements ICDIStackFrame {
cdiArgs = new ICDIArgument[0];
}
} catch (MIException e) {
//throw new CDIException(e.toString());
System.err.println(e);
//throw new CDIException(e.getMessage());
//System.err.println(e);
} catch (CDIException e) {
//throw e;
System.err.println(e);
//System.err.println(e);
}
}
if (cdiArgs == null) {
@ -120,11 +120,11 @@ public class StackFrame extends CObject implements ICDIStackFrame {
variables = new ICDIVariable[0];
}
} catch (MIException e) {
//throw new CDIException(e.toString());
System.err.println(e);
//throw new CDIException(e.getMessage());
//System.err.println(e);
} catch (CDIException e) {
//throw e;
System.err.println(e);
//System.err.println(e);
}
if (variables == null) {
variables = new ICDIVariable[0];
@ -148,7 +148,7 @@ public class StackFrame extends CObject implements ICDIStackFrame {
}
} catch (CDIException e) {
//throw e;
System.err.println(e);
//System.err.println(e);
}
if (registers == null) {
registers = new ICDIRegister[0];

View file

@ -58,7 +58,7 @@ public class Value extends CObject implements ICDIValue {
}
result = info.getValue();
} catch (MIException e) {
//throw new CDIException(e.toString());
//throw new CDIException(e.getMessage());
}
return result;
}
@ -85,7 +85,7 @@ public class Value extends CObject implements ICDIValue {
new Variable(variable.getStackFrame(), vars[i].getExp(), vars[i]);
}
} catch (MIException e) {
//throw new CDIException(e.toString());
//throw new CDIException(e.getMessage());
}
return variables;
}

View file

@ -88,7 +88,7 @@ public class Variable extends CObject implements ICDIVariable {
throw new CDIException("No answer");
}
} catch (MIException e) {
throw new CDIException(e.toString());
throw new CDIException(e.getMessage());
}
}
@ -107,7 +107,7 @@ public class Variable extends CObject implements ICDIVariable {
}
return info.isEditable();
} catch (MIException e) {
throw new CDIException(e.toString());
throw new CDIException(e.getMessage());
}
}
@ -126,7 +126,7 @@ public class Variable extends CObject implements ICDIVariable {
throw new CDIException("No answer");
}
} catch (MIException e) {
throw new CDIException(e.toString());
throw new CDIException(e.getMessage());
}
}