Skip to content

Commit 67a5975

Browse files
authored
Merge pull request RPTools#6 from JamzTheMan/1.4.1-dev-branch
Bug Fix
2 parents 8be24b0 + 212c158 commit 67a5975

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/java/net/rptools/lib/DebugStream.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,18 @@ private DebugStream() {
2525
public void println(Object x) {
2626
if (debugOn) {
2727
showLocation();
28-
super.println(x);
2928
}
29+
30+
super.println(x);
3031
}
3132

3233
@Override
3334
public void println(String x) {
3435
if (debugOn) {
3536
showLocation();
36-
super.println(x);
3737
}
38+
39+
super.println(x);
3840
}
3941

4042
private void showLocation() {

0 commit comments

Comments
 (0)