Small fix for infinite error log from CodeWindow
This commit is contained in:
@@ -186,7 +186,7 @@ public class BytecodeToolwindow extends JPanel {
|
|||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
StringWriter out = new StringWriter(1024);
|
StringWriter out = new StringWriter(1024);
|
||||||
e.printStackTrace(new PrintWriter(out));
|
e.printStackTrace(new PrintWriter(out));
|
||||||
return out.toString();
|
return out.toString().replaceAll("\r", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user