forked from loafle/openapi-generator-original
[Java][webclient] Fix deprecation warning: BodyInserters.fromObject (#8963)
* Fix deprecation warning: BodyInserters.fromObject See for more information #8553 * [Java][webclient] Upgrade to spring 5.2.13
This commit is contained in:
@@ -502,7 +502,7 @@ public class ApiClient extends JavaTimeFormatter {
|
||||
} else if(MediaType.MULTIPART_FORM_DATA.equals(contentType)) {
|
||||
return BodyInserters.fromMultipartData(formParams);
|
||||
} else {
|
||||
return obj != null ? BodyInserters.fromObject(obj) : null;
|
||||
return obj != null ? BodyInserters.fromValue(obj) : null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user