Skip to content

Commit

Permalink
quiet some insignificant errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Aug 30, 2017
1 parent 47ae832 commit 48321ca
Showing 1 changed file with 6 additions and 2 deletions.
Expand Up @@ -44,7 +44,9 @@ public void run() {
in.close();
}
catch (Exception e) {
dB.echoError(e);
if (dB.debugOverride) {
dB.echoError(e);
}
}
finally {
try {
Expand All @@ -53,7 +55,9 @@ public void run() {
}
}
catch (Exception e) {
dB.echoError(e);
if (dB.debugOverride) {
dB.echoError(e);
}
}
}
}
Expand Down

0 comments on commit 48321ca

Please sign in to comment.