Skip to content

Commit

Permalink
Merge pull request #2209 from hazendaz/master
Browse files Browse the repository at this point in the history
[cleanup] Remove unthrown exceptions
  • Loading branch information
hazendaz authored Jan 21, 2024
2 parents 52972ec + fa30052 commit 305b05e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,9 @@ public void benchmark() throws IOException, ServletException {

/**
* Cleanup.
*
* @throws ServletException
* the servlet exception
*/
@TearDown(Level.Trial)
public void cleanup() throws ServletException {
public void cleanup() {
this.tests.tearDown();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,9 @@ public void benchmark() throws IOException, ServletException {

/**
* Cleanup.
*
* @throws ServletException
* the servlet exception
*/
@TearDown(Level.Trial)
public void cleanup() throws ServletException {
public void cleanup() {
this.tests.tearDown();
}

Expand Down

0 comments on commit 305b05e

Please sign in to comment.