Skip to content

Commit d197f6b

Browse files
SDK regenerated by CI server [ci skip]
1 parent 93ae15a commit d197f6b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/AcceptAllRevisions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
ApiClient apiClient = new ApiClient(/*clientId*/ "####-####-####-####-####", /*clientSecret*/ "##################", null);
1010
WordsApi wordsApi = new WordsApi(apiClient);
11-
String fileName = "test_doc.docx";
11+
String fileName = "test_doc.docx";
1212

1313
// Upload original document to cloud storage.
1414
byte[] myVar1 = Files.readAllBytes(Paths.get(fileName).toAbsolutePath());

examples/AcceptAllRevisionsOnline.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ApiClient apiClient = new ApiClient(/*clientId*/ "####-####-####-####-####", /*clientSecret*/ "##################", null);
22
WordsApi wordsApi = new WordsApi(apiClient);
3-
String fileName = "test_doc.docx";
3+
String fileName = "test_doc.docx";
44

55
// Calls AcceptAllRevisionsOnline method for document in cloud.
66
byte[] requestDocument = Files.readAllBytes(Paths.get(fileName).toAbsolutePath());

src/test/java/com/aspose/words/cloud/TestExamples.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void testAcceptAllRevisions() throws Exception
5858
{
5959
String documentsDir = "ExamplesData";
6060
WordsApi wordsApi = new WordsApi(apiClient);
61-
String fileName = "test_doc.docx";
61+
String fileName = "test_doc.docx";
6262

6363
// Upload original document to cloud storage.
6464
byte[] myVar1 = Files.readAllBytes(Paths.get(documentsDir, fileName).toAbsolutePath());
@@ -77,7 +77,7 @@ public void testAcceptAllRevisionsOnline() throws Exception
7777
{
7878
String documentsDir = "ExamplesData";
7979
WordsApi wordsApi = new WordsApi(apiClient);
80-
String fileName = "test_doc.docx";
80+
String fileName = "test_doc.docx";
8181

8282
// Calls AcceptAllRevisionsOnline method for document in cloud.
8383
byte[] requestDocument = Files.readAllBytes(Paths.get(documentsDir, fileName).toAbsolutePath());

0 commit comments

Comments
 (0)