We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0043fdf commit d62a0c0Copy full SHA for d62a0c0
network/src/main/java/org/openjdk/skara/network/RestRequest.java
@@ -109,6 +109,10 @@ private String composedBody() {
109
return rawBody;
110
}
111
112
+ if (body == null && queryType == RequestType.GET && bodyParams.isEmpty()) {
113
+ return null;
114
+ }
115
+
116
var finalBody = body == null ? JSON.object() : body.asObject();
117
for (var param : bodyParams) {
118
finalBody.put(param.key, param.value);
1 commit comments
openjdk-notifier[bot] commentedon May 11, 2023
Review
Issues