Skip to content

Commit f633577

Browse files
SDK regenerated by CI server [ci skip]
1 parent f914128 commit f633577

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

src/main/java/com/aspose/words/cloud/ApiClient.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1238,8 +1238,7 @@ public Request buildBatchRequest(BatchPartRequest[] requests, Boolean displayInt
12381238
headers.put("Content-Type", requestBody.contentType().toString());
12391239

12401240
String url = "/words/batch";
1241-
if (!displayIntermediateResults)
1242-
{
1241+
if (!displayIntermediateResults) {
12431242
url += "?displayIntermediateResults=false";
12441243
}
12451244

src/main/java/com/aspose/words/cloud/ChildRequestContent.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,10 @@ public MediaType contentType() {
5656
@Override
5757
public void writeTo(BufferedSink bufferedSink) throws IOException {
5858
Request httpRequest;
59-
try
60-
{
59+
try {
6160
httpRequest = request.getRequest().buildHttpRequest(this.apiClient, null, null, false);
6261
}
63-
catch (ApiException ex)
64-
{
62+
catch (ApiException ex) {
6563
throw new IOException(ex.getMessage());
6664
}
6765

@@ -75,8 +73,7 @@ public void writeTo(BufferedSink bufferedSink) throws IOException {
7573
bufferedSink.writeUtf8(request.getRequestId());
7674
bufferedSink.writeUtf8(CRLF);
7775

78-
if (request.getParentRequestId() != null)
79-
{
76+
if (request.getParentRequestId() != null) {
8077
bufferedSink.writeUtf8("DependsOn: ");
8178
bufferedSink.writeUtf8(request.getParentRequestId());
8279
bufferedSink.writeUtf8(CRLF);

src/main/java/com/aspose/words/cloud/model/requests/BatchPartRequest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@
3535
/*
3636
* A batch part request wrapper to add batch part features.
3737
*/
38-
public class BatchPartRequest
39-
{
38+
public class BatchPartRequest {
4039
private RequestIfc request;
4140

4241
private String requestId;

0 commit comments

Comments
 (0)