Skip to content

Commit 2f84059

Browse files
committed
Update GistId for ReleaseNotes
1 parent 255ad26 commit 2f84059

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

Examples/ApiExamples/Java/src/main/java/Examples/ExDigitalSignatureUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Examples;
1+
package Examples;
22

33
//////////////////////////////////////////////////////////////////////////
44
// Copyright (c) 2001-2024 Aspose Pty Ltd. All Rights Reserved.
@@ -234,7 +234,7 @@ public void noCertificateForSign() throws Exception {
234234
public void xmlDsig() throws Exception
235235
{
236236
//ExStart:XmlDsig
237-
//GistId:e06aa7a168b57907a5598e823a22bf0a
237+
//GistId:6280fd6c1c1854468bea095ec2af902b
238238
//ExFor:SignOptions.XmlDsigLevel
239239
//ExFor:XmlDsigLevel
240240
//ExSummary:Shows how to sign document based on XML-DSig standard.

Examples/ApiExamples/Java/src/main/java/Examples/ExField.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7414,7 +7414,7 @@ public void bibliographySources() throws Exception
74147414
Assert.assertEquals(12, bibliography.getSources().size());
74157415

74167416
Collection<Source> sources = bibliography.getSources();
7417-
Source source = (Source)bibliography.getSources().toArray()[8];
7417+
Source source = (Source)bibliography.getSources().toArray()[0];
74187418
Assert.assertEquals("Book 0 (No LCID)", source.getTitle());
74197419
Assert.assertEquals(SourceType.BOOK, source.getSourceType());
74207420
Assert.assertNull(source.getAbbreviatedCaseNumber());

Examples/ApiExamples/Java/src/main/java/Examples/ExFormFields.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ private void testFormField(Document doc) throws Exception {
300300

301301
TestUtil.verifyField(FieldType.FIELD_FORM_DROP_DOWN, " FORMDROPDOWN \u0001", "", doc.getRange().getFields().get(0));
302302
TestUtil.verifyField(FieldType.FIELD_FORM_CHECK_BOX, " FORMCHECKBOX \u0001", "", doc.getRange().getFields().get(1));
303-
TestUtil.verifyField(FieldType.FIELD_FORM_TEXT_INPUT, " FORMTEXT \u0001", "New placeholder text", doc.getRange().getFields().get(2));
303+
TestUtil.verifyField(FieldType.FIELD_FORM_TEXT_INPUT, " FORMTEXT \u0001", "Regular", doc.getRange().getFields().get(2));
304304

305305
FormFieldCollection formFields = doc.getRange().getFormFields();
306306
Assert.assertEquals(3, formFields.getCount());
@@ -330,7 +330,7 @@ private void testFormField(Document doc) throws Exception {
330330
Assert.assertEquals("FIRST CAPITAL", formFields.get(2).getTextInputFormat());
331331
Assert.assertEquals(TextFormFieldType.REGULAR, formFields.get(2).getTextInputType());
332332
Assert.assertEquals(50, formFields.get(2).getMaxLength());
333-
Assert.assertEquals("New placeholder text", formFields.get(2).getResult());
333+
Assert.assertEquals("Regular", formFields.get(2).getResult());
334334
}
335335

336336
@Test

Examples/ApiExamples/Java/src/main/java/Examples/ExInlineStory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Examples;
1+
package Examples;
22

33
//////////////////////////////////////////////////////////////////////////
44
// Copyright (c) 2001-2024 Aspose Pty Ltd. All Rights Reserved.
@@ -651,7 +651,7 @@ public void updateActualReferenceMarks() throws Exception
651651
public void endnoteSeparator() throws Exception
652652
{
653653
//ExStart:EndnoteSeparator
654-
//GistId:e06aa7a168b57907a5598e823a22bf0a
654+
//GistId:6280fd6c1c1854468bea095ec2af902b
655655
//ExFor:DocumentBase.FootnoteSeparators
656656
//ExFor:FootnoteSeparatorType
657657
//ExSummary:Shows how to remove endnote separator.
@@ -669,7 +669,7 @@ public void endnoteSeparator() throws Exception
669669
public void footnoteSeparator() throws Exception
670670
{
671671
//ExStart:FootnoteSeparator
672-
//GistId:e06aa7a168b57907a5598e823a22bf0a
672+
//GistId:6280fd6c1c1854468bea095ec2af902b
673673
//ExFor:DocumentBase.FootnoteSeparators
674674
//ExFor:FootnoteSeparatorType
675675
//ExSummary:Shows how to manage footnote separator format.

Examples/ApiExamples/Java/src/main/java/Examples/ExMarkdownLoadOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Examples;
1+
package Examples;
22

33
//////////////////////////////////////////////////////////////////////////
44
// Copyright (c) 2001-2024 Aspose Pty Ltd. All Rights Reserved.
@@ -42,7 +42,7 @@ public void preserveEmptyLines() throws Exception
4242
public void importUnderlineFormatting() throws Exception
4343
{
4444
//ExStart:ImportUnderlineFormatting
45-
//GistId:e06aa7a168b57907a5598e823a22bf0a
45+
//GistId:6280fd6c1c1854468bea095ec2af902b
4646
//ExFor:MarkdownLoadOptions.ImportUnderlineFormatting
4747
//ExSummary:Shows how to recognize plus characters "++" as underline text formatting.
4848
try (ByteArrayInputStream stream = new ByteArrayInputStream("++12 and B++".getBytes(StandardCharsets.US_ASCII)))

Examples/ApiExamples/Java/src/main/java/Examples/ExShape.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Examples;
1+
package Examples;
22

33
//////////////////////////////////////////////////////////////////////////
44
// Copyright (c) 2001-2024 Aspose Pty Ltd. All Rights Reserved.
@@ -3377,7 +3377,7 @@ public void checkedCheckBox() throws Exception
33773377
public void insertGroupShape() throws Exception
33783378
{
33793379
//ExStart:InsertGroupShape
3380-
//GistId:e06aa7a168b57907a5598e823a22bf0a
3380+
//GistId:6280fd6c1c1854468bea095ec2af902b
33813381
//ExFor:DocumentBuilder.InsertGroupShape(double, double, double, double, Shape[])
33823382
//ExFor:DocumentBuilder.InsertGroupShape(Shape[])
33833383
//ExSummary:Shows how to insert DML group shape.

Examples/ApiExamples/Java/src/main/java/Examples/ExStructuredDocumentTag.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Examples;
1+
package Examples;
22

33
//////////////////////////////////////////////////////////////////////////
44
// Copyright (c) 2001-2024 Aspose Pty Ltd. All Rights Reserved.
@@ -1303,7 +1303,7 @@ public void appearance() throws Exception
13031303
public void insertStructuredDocumentTag() throws Exception
13041304
{
13051305
//ExStart:InsertStructuredDocumentTag
1306-
//GistId:e06aa7a168b57907a5598e823a22bf0a
1306+
//GistId:6280fd6c1c1854468bea095ec2af902b
13071307
//ExFor:DocumentBuilder.InsertStructuredDocumentTag(SdtType)
13081308
//ExSummary:Shows how to simply insert structured document tag.
13091309
Document doc = new Document(getMyDir() + "Rendering.docx");

Examples/ApiExamples/Java/src/main/java/Examples/ExTable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Examples;
1+
package Examples;
22

33
//////////////////////////////////////////////////////////////////////////
44
// Copyright (c) 2001-2024 Aspose Pty Ltd. All Rights Reserved.
@@ -1874,7 +1874,7 @@ private Cell calculateColSpan(Cell cell, RefInt colSpan)
18741874
public void contextTableFormatting() throws Exception
18751875
{
18761876
//ExStart:ContextTableFormatting
1877-
//GistId:e06aa7a168b57907a5598e823a22bf0a
1877+
//GistId:6280fd6c1c1854468bea095ec2af902b
18781878
//ExFor:DocumentBuilderOptions
18791879
//ExFor:DocumentBuilderOptions.ContextTableFormatting
18801880
//ExSummary:Shows how to ignore table formatting for content after.

0 commit comments

Comments
 (0)