Skip to content

Commit

Permalink
Make checkstyle happy
Browse files Browse the repository at this point in the history
  • Loading branch information
WasabiFan committed Dec 19, 2015
1 parent 6dcc437 commit 106cdcf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/xbot/common/logging/RobotAssertionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ public final void throwException(RuntimeException e) {
handlePlatformException(e);
}

protected abstract void handlePlatformException(RuntimeException e);

public abstract boolean isExceptionsEnabled();

public final void throwException(String message, Throwable cause) {
throwException(new RuntimeException(message, cause));
}

protected abstract void handlePlatformException(RuntimeException e);

public abstract boolean isExceptionsEnabled();

public final void assertTrue(boolean value, String assertionFaliureCause) {
if(!value) {
Expand Down

0 comments on commit 106cdcf

Please sign in to comment.