From ec52958890b68239954fe52060b695fcb6924c02 Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Sun, 1 May 2016 22:48:18 +0100 Subject: [PATCH] removed unused base attributes --- ts/docx/xml-components/base-attributes.ts | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 ts/docx/xml-components/base-attributes.ts diff --git a/ts/docx/xml-components/base-attributes.ts b/ts/docx/xml-components/base-attributes.ts deleted file mode 100644 index 172a6fcb69..0000000000 --- a/ts/docx/xml-components/base-attributes.ts +++ /dev/null @@ -1,17 +0,0 @@ -import {XmlComponent} from "./"; - -export abstract class BaseAttributes extends XmlComponent { - private _attr: Object; - - xmlKeys = {}; - - constructor(xmlKeys: Object, properties?: any) { - super("_attr"); - this._attr = properties - - if (!properties) { - this._attr = {}; - } - this._attr["xmlKeys"] = this.xmlKeys; - } -} \ No newline at end of file