Remove create table helper function

This commit is contained in:
Dolan
2019-06-25 01:21:28 +01:00
parent dfe986331d
commit c97d15cb9f
22 changed files with 132 additions and 422 deletions

View File

@ -56,13 +56,4 @@ export class Header extends InitializableXmlComponent {
public addTable(table: Table): void {
this.root.push(table);
}
public createTable(rows: number, cols: number): Table {
const table = new Table({
rows: rows,
columns: cols,
});
this.addTable(table);
return table;
}
}