Skip to content

Commit

Permalink
Changed return type of throwable method in Event to OptionalThrowable.
Browse files Browse the repository at this point in the history
  • Loading branch information
bvenners committed Jun 22, 2013
1 parent ad5db8f commit b0a2e64
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/sbt/testing/Event.java
Expand Up @@ -32,9 +32,8 @@ public interface Event {
Status status();

/**
* A <code>Throwable</code> associated with this <code>Event</code>,
* or <code>null</code> if no <code>Throwable</code> is associated with this event.
* An <code>OptionalThrowable</code> associated with this <code>Event</code>.
*/
Throwable throwable();
OptionalThrowable throwable();
}

0 comments on commit b0a2e64

Please sign in to comment.