From fc87a73259c612f219956fe48679d56b49f4dd7c Mon Sep 17 00:00:00 2001 From: Max Lay Date: Tue, 4 Aug 2020 09:15:20 +1200 Subject: [PATCH] Remove unnecessary properties getter --- src/file/custom-properties/custom-properties.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/file/custom-properties/custom-properties.ts b/src/file/custom-properties/custom-properties.ts index 0685a38f08..c254ceeca8 100644 --- a/src/file/custom-properties/custom-properties.ts +++ b/src/file/custom-properties/custom-properties.ts @@ -34,8 +34,4 @@ export class CustomProperties extends XmlComponent { public addCustomProperty(property: ICustomPropertyOptions): void { this.properties.push(new CustomProperty(this.nextId++, property)); } - - public get Properties(): CustomProperty[] { - return this.properties; - } }