Remove deprecated svr3Credentials field
This commit is contained in:
parent
09eb42e5c6
commit
c84d96abee
|
@ -169,8 +169,7 @@ public class RegistrationLockVerificationManager {
|
|||
throw new WebApplicationException(Response.status(FAILURE_HTTP_STATUS)
|
||||
.entity(new RegistrationLockFailure(
|
||||
existingRegistrationLock.getTimeRemaining().toMillis(),
|
||||
svr2FailureCredentials(existingRegistrationLock, updatedAccount),
|
||||
null))
|
||||
svr2FailureCredentials(existingRegistrationLock, updatedAccount)))
|
||||
.build());
|
||||
}
|
||||
|
||||
|
|
|
@ -18,8 +18,5 @@ public record RegistrationLockFailure(
|
|||
long timeRemaining,
|
||||
@Schema(description = "Credentials that can be used with SVR2")
|
||||
@Nullable
|
||||
ExternalServiceCredentials svr2Credentials,
|
||||
@Deprecated
|
||||
@Nullable
|
||||
ExternalServiceCredentials svr3Credentials) {
|
||||
ExternalServiceCredentials svr2Credentials) {
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue