Small fix for infinite error log from CodeWindow

This commit is contained in:
Nikolay Krasko
2011-12-30 13:51:35 +04:00
parent fb0752a41c
commit eee5e04804
@@ -186,7 +186,7 @@ public class BytecodeToolwindow extends JPanel {
} catch (Exception e) {
StringWriter out = new StringWriter(1024);
e.printStackTrace(new PrintWriter(out));
return out.toString();
return out.toString().replaceAll("\r", "");
}