mirror of
https://github.com/corda/corda.git
synced 2025-06-15 21:58:17 +00:00
flesh out resource URL scheme implementation
This commit is contained in:
@ -50,14 +50,14 @@ public class Throwable {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
printStackTrace(sb, System.getProperty("line.separator"));
|
||||
out.print(sb.toString());
|
||||
try { out.flush(); } catch (IOException e) { }
|
||||
out.flush();
|
||||
}
|
||||
|
||||
public void printStackTrace(PrintWriter out) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
printStackTrace(sb, System.getProperty("line.separator"));
|
||||
out.print(sb.toString());
|
||||
try { out.flush(); } catch (IOException e) { }
|
||||
out.flush();
|
||||
}
|
||||
|
||||
public void printStackTrace() {
|
||||
|
Reference in New Issue
Block a user