Remove unnecessary properties getter

This commit is contained in:
Max Lay
2020-08-04 09:15:20 +12:00
parent ec4c4fb5c4
commit fc87a73259

View File

@ -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;
}
}