You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LauncherDiscoveryRequestBuilder.request() and LauncherExecutionRequestBuilder.request() currently compete with each other if users wish to use static imports for both of those methods.
Technically, one can use static imports for both of those methods side by side; however, that results in code which is a bit confusing for the reader.
To address that and improve the programming model, we should introduce discoveryRequest() and executionRequest() aliases in those builders, respectively.
This aligns with existing aliased methods such as Arguments.of()/Arguments.arguments(), Named.of()/Named.named(), etc.