We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 751e59d commit 090ccbfCopy full SHA for 090ccbf
.blazar.yaml
@@ -0,0 +1,2 @@
1
+env:
2
+ SET_VERSION_OVERRIDE: "2.4.19-$GIT_BRANCH-SNAPSHOT"
modules/swagger-codegen/src/main/resources/Java/libraries/okhttp-gson/ApiClient.mustache
@@ -769,6 +769,8 @@ public class ApiClient {
769
content = null;
770
}
771
return RequestBody.create(MediaType.parse(contentType), content);
772
+ } else if (obj instanceof String) {
773
+ return RequestBody.create(MediaType.parse(contentType), (String) obj);
774
} else {
775
throw new ApiException("Content type \"" + contentType + "\" is not supported");
776
0 commit comments