From 7818d583946d2356e8394f5ab74f75a2802aa5e0 Mon Sep 17 00:00:00 2001 From: laineyhm <56163492+laineyhm@users.noreply.github.com> Date: Tue, 1 Nov 2022 10:52:42 +0700 Subject: [PATCH] remove commented code Co-authored-by: Christopher Hirt --- .../bellows/shared/pick-list-editor.module.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/angular-app/bellows/shared/pick-list-editor.module.ts b/src/angular-app/bellows/shared/pick-list-editor.module.ts index dc87dc9257..5cafd6bcf8 100644 --- a/src/angular-app/bellows/shared/pick-list-editor.module.ts +++ b/src/angular-app/bellows/shared/pick-list-editor.module.ts @@ -25,15 +25,6 @@ export class PickListEditorController implements angular.IController { } } - //Used in adding an item to the Options lists under Configuration, which is currently disabled in Language Forge 2022-10 - // pickAddItem(): void { - // if (this.newValue) { - // const key = PickListEditorController.keyFromValue(this.newValue); - // this.items.push({ key, value: this.newValue }); - // this.isDeletable[key] = true; - // this.newValue = undefined; - // } - // } pickRemoveItem(index: number): void { delete this.isDeletable[this.items[index].key];