Browse Source

Reorder functions

pull/5252/head
Thomas Kaul 4 weeks ago
parent
commit
3c2ef13040
  1. 8
      apps/client/src/app/services/settings-storage.service.ts

8
apps/client/src/app/services/settings-storage.service.ts

@ -12,11 +12,11 @@ export class SettingsStorageService {
return window.localStorage.getItem(aKey);
}
public setSetting(aKey: string, aValue: string) {
window.localStorage.setItem(aKey, aValue);
}
public removeSetting(aKey: string) {
return window.localStorage.removeItem(aKey);
}
public setSetting(aKey: string, aValue: string) {
window.localStorage.setItem(aKey, aValue);
}
}

Loading…
Cancel
Save