Skip to content

Commit

Permalink
Add curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
ljpengelen authored and vietj committed Oct 23, 2024
1 parent ae9b8c7 commit 8434dfa
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ public void handle(HttpServerRequest request) {
}

RoutingContext routingContext = new RoutingContextImpl(null, this, request, state.getRoutes());
if (!routingContext.failed()) routingContext.next();
if (!routingContext.failed()) {
routingContext.next();
}
}

@Override
Expand Down

0 comments on commit 8434dfa

Please sign in to comment.