Better handling of push timeouts during registration.

This commit is contained in:
Nicholas Tinsley
2023-03-15 17:29:56 -04:00
parent af7987d743
commit c01d542ec2
6 changed files with 15 additions and 15 deletions

View File

@@ -67,10 +67,6 @@ public abstract class ServiceResponseProcessor<T> {
return response.getStatus() == 401 || response.getStatus() == 403;
}
protected boolean captchaRequired() {
return response.getStatus() == 402;
}
protected boolean notFound() {
return response.getStatus() == 404;
}