Skip to content

Commit d62a0c0

Browse files
committedMay 11, 2023
1909: Empty GET calls should be left empty
Reviewed-by: kcr, tbell
1 parent 0043fdf commit d62a0c0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎network/src/main/java/org/openjdk/skara/network/RestRequest.java

+4
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ private String composedBody() {
109109
return rawBody;
110110
}
111111

112+
if (body == null && queryType == RequestType.GET && bodyParams.isEmpty()) {
113+
return null;
114+
}
115+
112116
var finalBody = body == null ? JSON.object() : body.asObject();
113117
for (var param : bodyParams) {
114118
finalBody.put(param.key, param.value);

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on May 11, 2023

@openjdk-notifier[bot]
Please sign in to comment.