Skip to content

Commit

Permalink
Drop unused parameters, fixing issue with Quarkus main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Feb 5, 2025
1 parent d3ffd95 commit 353b12e
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
import io.quarkus.deployment.IsDevelopment;
import io.quarkus.deployment.annotations.BuildProducer;
import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.LaunchModeBuildItem;
import io.quarkus.devui.spi.page.CardPageBuildItem;
import io.quarkus.devui.spi.page.ExternalPageBuilder;
import io.quarkus.devui.spi.page.Page;
import io.quarkus.vertx.http.deployment.HttpRootPathBuildItem;
import io.quarkus.vertx.http.runtime.management.ManagementInterfaceBuildTimeConfig;

/**
* Dev UI card for displaying important details such as the GitHub App Replay UI.
Expand All @@ -17,9 +15,7 @@ public class GitHubAppDevUIProcessor {

@BuildStep(onlyIf = IsDevelopment.class)
void createDevCard(BuildProducer<CardPageBuildItem> cardPageBuildItemBuildProducer,
HttpRootPathBuildItem httpRootPathBuildItem,
ManagementInterfaceBuildTimeConfig managementInterfaceBuildTimeConfig,
LaunchModeBuildItem launchModeBuildItem) {
HttpRootPathBuildItem httpRootPathBuildItem) {
final CardPageBuildItem card = new CardPageBuildItem();

String uiPath = httpRootPathBuildItem.resolvePath("replay");
Expand Down

0 comments on commit 353b12e

Please sign in to comment.