(id)
| 98 | } |
| 99 | |
| 100 | removeWorksheet(id) { |
| 101 | const worksheet = this.getWorksheet(id); |
| 102 | if (worksheet) { |
| 103 | worksheet.destroy(); |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | getWorksheet(id) { |
| 108 | if (id === undefined) { |
nothing calls this directly
no test coverage detected