From 2bb7e08adeb552b28fec271b680ae396edd4d926 Mon Sep 17 00:00:00 2001 From: Dolan Date: Thu, 10 Oct 2019 01:19:55 +0100 Subject: [PATCH] Remove unnecessary method --- src/file/paragraph/paragraph.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/file/paragraph/paragraph.ts b/src/file/paragraph/paragraph.ts index 5d8b4e0ae0..b11393ee37 100644 --- a/src/file/paragraph/paragraph.ts +++ b/src/file/paragraph/paragraph.ts @@ -45,7 +45,7 @@ export interface IParagraphOptions { readonly level: number; readonly custom?: boolean; }; - readonly children?: Array; + readonly children?: Array; } export class Paragraph extends XmlComponent { @@ -167,9 +167,4 @@ export class Paragraph extends XmlComponent { this.root.splice(1, 0, run); return this; } - - public addSequentialIdentifier(identifier: string): Paragraph { - this.root.push(new SequentialIdentifier(identifier)); - return this; - } }