if(in == null) {
return null;
}
if (util.match("/at sun.reflect/", in)) {
return null;
}
if (in.indexOf("at java.lang.reflect.Method") >= 0) {
return null;
}
if (in.indexOf("Compiled Code") >= 0) {
if(in.indexOf("junit.framework.TestSuite") >= 0) {
return util.substitute("s/Compiled Code/TestSuite.java:XXX/", in);
}
}
if (util.match("/\\(Method.java:.*\\)/", in)) {
return util.substitute("s/\\(Method.java:.*\\)/(Native Method)/", in);
}
return in;