From 5e6044175170b57fe1ccacc2ffcc5ee9ef9c5b2e Mon Sep 17 00:00:00 2001 From: Ashley Smith Date: Tue, 3 Sep 2024 14:51:05 -0600 Subject: [PATCH] getvalue not being used anymore --- src/localStorageManager.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/localStorageManager.ts b/src/localStorageManager.ts index 904f08d..eaced60 100644 --- a/src/localStorageManager.ts +++ b/src/localStorageManager.ts @@ -26,9 +26,6 @@ export class LocalStorageManager { public removeValue() { localStorage.removeItem(this._storageKey); } - private getValue() { - return getValue(this._storageKey); - } public loadIdentityFromLocalStorage(): Identity | OptoutIdentity | null { return loadIdentityWithStorageKey(this._storageKey);