refactoring

This commit is contained in:
Frank Knoll
2024-07-14 02:11:41 +02:00
parent b143949798
commit a8ec099c00
8 changed files with 54 additions and 45 deletions

View File

@@ -7,10 +7,10 @@ class SearchParam {
}
get() {
return UIUtils.getSearchParamOfCurrentUrl(this.#name);
return UrlUtils.getSearchParamOfCurrentUrl(this.#name);
}
set(value) {
UIUtils.setSearchParamOfCurrentUrl(this.#name, value);
UrlUtils.setSearchParamOfCurrentUrl(this.#name, value);
}
}