Skip to content

Commit

Permalink
rm a pmd issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshnsears committed Dec 26, 2018
1 parent c281a85 commit 0c75eb5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/xqa/IngestBalancer.java
Expand Up @@ -56,7 +56,10 @@ public static void main(final String... args) {
ingestBalancer.processCommandLine(args);
ingestBalancer.start();
ingestBalancer.join();
} catch (InterruptedException | ParseException exception) {
} catch (InterruptedException exception) {
logger.error(exception.getMessage());
Thread.currentThread().interrupt();
} catch (ParseException exception) {
logger.error(exception.getMessage());
}
}
Expand Down

0 comments on commit 0c75eb5

Please sign in to comment.