flesh out resource URL scheme implementation

This commit is contained in:
Joel Dice
2007-08-10 17:45:47 -06:00
parent 2e9b9fe8d4
commit d3931b4853
15 changed files with 267 additions and 90 deletions

View File

@ -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() {