Skip to content

Commit

Permalink
Revert "ExternalResource: declare after() to throw Throwable (junit-t…
Browse files Browse the repository at this point in the history
…eam#1421)"

This reverts commit cebbf5e.
  • Loading branch information
panchenko committed Apr 3, 2019
1 parent 552bb39 commit 5a37862
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/org/junit/rules/ExternalResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,8 @@ protected void before() throws Throwable {

/**
* Override to tear down your specific external resource.
*
* @throws Throwable if teardown fails
*/
protected void after() throws Throwable {
protected void after() {
// do nothing
}
}

0 comments on commit 5a37862

Please sign in to comment.