Skip to content

Commit

Permalink
chore: fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
mjeanroy committed Nov 28, 2023
1 parent 30331ce commit 5f7afb7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ private static void doRun(EmbeddedJetty jetty, Runnable testFn) {

try {
testFn.run();
} finally {
}
finally {
jetty.stop();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ private static void doRun(EmbeddedJetty jetty, Runnable testFn) {

try {
testFn.run();
} finally {
}
finally {
jetty.stop();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ private static void doRun(EmbeddedJetty jetty, Runnable testFn) {

try {
testFn.run();
} finally {
}
finally {
jetty.stop();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ private static void doRun(EmbeddedJetty jetty, Runnable testFn) {

try {
testFn.run();
} finally {
}
finally {
jetty.stop();
}
}
Expand Down

0 comments on commit 5f7afb7

Please sign in to comment.