formattingˆ

This commit is contained in:
spencergibb
2023-03-09 16:09:20 -05:00
parent 226e08a8eb
commit 176da8654a

View File

@@ -33,7 +33,8 @@ public interface ReregistrationPredicate {
boolean isEligible(OperationException e);
/**
* Default implementation that performs re-registration when the status code is either 404 or 500.
* Default implementation that performs re-registration when the status code is either
* 404 or 500.
*/
ReregistrationPredicate DEFAULT = e -> (e.getStatusCode() == 404 || e.getStatusCode() == 500);