Skip to content

Commit

Permalink
rename param
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Nov 7, 2022
1 parent 46ed9b4 commit 2d54cd9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ public String path() {
}

@Override
public void handle(RoutingContext event) {
HttpServerRequest req = event.request();
public void handle(RoutingContext ctx) {
HttpServerRequest req = ctx.request();

WebServerRequest evt =
new WebServerRequest(
Expand All @@ -111,7 +111,7 @@ public void handle(RoutingContext event) {
}
});

this.delegate.handle(event);
this.delegate.handle(ctx);
}

@Name("io.cryostat.net.web.WebServer.WebServerRequest")
Expand Down

0 comments on commit 2d54cd9

Please sign in to comment.