Skip to content

Commit

Permalink
Merge pull request #41 from smillidge/master
Browse files Browse the repository at this point in the history
Fix for GLASSFISH-21242
  • Loading branch information
smillidge committed Oct 26, 2014
2 parents aa2c0f2 + 1974db8 commit 3a1eaf3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public void println(Object x) {

if (!(x instanceof java.lang.Throwable)) {
// No special processing if it is not an exception.
println(x.toString());
println(String.valueOf(x));
return;
} else {
StackTraceObjects sTO = new StackTraceObjects((Throwable) x);
Expand Down

0 comments on commit 3a1eaf3

Please sign in to comment.