Removed the unused static validateAccount method from the JavaScript journal entry editor.

This commit is contained in:
依瑪貓 2023-03-13 20:04:55 +08:00
parent 3ce34803f3
commit 74071e8997

View File

@ -376,12 +376,4 @@ class JournalEntryEditor {
static edit(entry, accountCode, accountText, summary, amount) { static edit(entry, accountCode, accountText, summary, amount) {
this.#editor.#onEdit(entry, accountCode, accountText, summary, amount); this.#editor.#onEdit(entry, accountCode, accountText, summary, amount);
} }
/**
* Validates the account when the account is updated from the account selector.
*
*/
static validateAccount() {
this.#editor.#validateAccount();
}
} }