Explaining the return in case of exception. (#32)

This commit is contained in:
Fernando F D Bittencourt
2018-06-01 17:44:09 -03:00
committed by Ryan Baxter
parent ffd4290e06
commit a57c416d4a

View File

@@ -79,9 +79,8 @@ public class FeignContentGzipEncodingInterceptor extends BaseRequestInterceptor
final long length = Long.parseLong(strLen);
return length > getProperties().getMinRequestSize();
} catch (NumberFormatException ex) {
// ignores the exception
return false;
}
return false;
}
/**