This is an automated email from the ASF dual-hosted git repository.
mibo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/olingo-odata4.git
The following commit(s) were added to refs/heads/master by this push:
new b81bc23 [OLINGO-1411] Fixed typo
b81bc23 is described below
commit b81bc23a54ecc6e3e190fb044fcff52c218541f3
Author: Michael Bolz <[email protected]>
AuthorDate: Mon Nov 25 21:30:33 2019 +0100
[OLINGO-1411] Fixed typo
---
.../client/core/communication/request/AsyncRequestWrapperImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/lib/client-core/src/main/java/org/apache/olingo/client/core/communication/request/AsyncRequestWrapperImpl.java
b/lib/client-core/src/main/java/org/apache/olingo/client/core/communication/request/AsyncRequestWrapperImpl.java
index c82f2cf..61b2e05 100644
---
a/lib/client-core/src/main/java/org/apache/olingo/client/core/communication/request/AsyncRequestWrapperImpl.java
+++
b/lib/client-core/src/main/java/org/apache/olingo/client/core/communication/request/AsyncRequestWrapperImpl.java
@@ -225,7 +225,7 @@ public class AsyncRequestWrapperImpl<R extends
ODataResponse> extends AbstractRe
int parseReplyAfter(String value) {
if (value == null || value.isEmpty()) {
return DEFAULT_RETRY_AFTER;
-
+ }
try {
int n = Integer.parseInt(value);
if (n < 0) {