Skip to content

Commit 5383a48

Browse files
committed
polish
1 parent 2175dbe commit 5383a48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/main/java/io/split/service/SplitHttpClientImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public SplitHttpResponse get(URI uri, FetchOptions options, Map<String, List<Str
100100
statusMessage,
101101
body,
102102
Arrays.stream(response.getHeaders()).map(
103-
h -> new SplitHttpResponse.Header(h.getName(), Collections.singletonList(h.getValue())))
103+
h -> new SplitHttpResponse.Header(h.getName(), Collections.singletonList(h.getValue())))
104104
.collect(Collectors.toList()));
105105
} catch (Exception e) {
106106
throw new IllegalStateException(String.format("Problem in http get operation: %s", e), e);

0 commit comments

Comments
 (0)