Skip to content

Commit

Permalink
Undo accidental formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
SamCarlberg committed Jul 9, 2016
1 parent 0a53a78 commit b71d79a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/edu/wpi/grip/core/GripCoreModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ protected void onSubscriberException(Throwable exception, @Nullable SubscriberEx
* We intentionally catch the throwable because we can't be sure what will happen.
* We drop the last throwable because we clearly have a problem beyond our control.
*/
@SuppressWarnings( {"PMD.AvoidCatchingThrowable", "PMD.EmptyCatchBlock"})
@SuppressWarnings({"PMD.AvoidCatchingThrowable", "PMD.EmptyCatchBlock"})
protected void onThreadException(Thread thread, Throwable exception) {
// Don't do anything outside of a try catch block when dealing with thread death
try {
Expand Down
2 changes: 1 addition & 1 deletion ui/src/main/java/edu/wpi/grip/ui/MainWindowController.java
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ protected void deploy() {
}

@Subscribe
@SuppressWarnings( {"PMD.UnusedPrivateMethod", "PMD.UnusedFormalParameter"})
@SuppressWarnings({"PMD.UnusedPrivateMethod", "PMD.UnusedFormalParameter"})
private void runStopped(TimerEvent<?> event) {
if (!(event.getSource() instanceof PipelineRunner)) {
return;
Expand Down

0 comments on commit b71d79a

Please sign in to comment.