Remove an unused user-agent argument
This commit is contained in:
parent
b7e986f43c
commit
dee3723d97
|
@ -240,8 +240,7 @@ public class KeysController {
|
||||||
@ApiResponse(responseCode = "422", description = "Invalid request format")
|
@ApiResponse(responseCode = "422", description = "Invalid request format")
|
||||||
public CompletableFuture<Response> checkKeys(
|
public CompletableFuture<Response> checkKeys(
|
||||||
@ReadOnly @Auth final AuthenticatedDevice auth,
|
@ReadOnly @Auth final AuthenticatedDevice auth,
|
||||||
@RequestBody @NotNull @Valid final CheckKeysRequest checkKeysRequest,
|
@RequestBody @NotNull @Valid final CheckKeysRequest checkKeysRequest) {
|
||||||
@HeaderParam(HttpHeaders.USER_AGENT) final String userAgent) {
|
|
||||||
|
|
||||||
final UUID identifier = auth.getAccount().getIdentifier(checkKeysRequest.identityType());
|
final UUID identifier = auth.getAccount().getIdentifier(checkKeysRequest.identityType());
|
||||||
final byte deviceId = auth.getAuthenticatedDevice().getId();
|
final byte deviceId = auth.getAuthenticatedDevice().getId();
|
||||||
|
|
Loading…
Reference in New Issue