refactor: remove unused storage factory code and comments
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / eslint (pull_request) Successful in 24s
CI / test-build (pull_request) Successful in 31s
CI / prettier (pull_request) Failing after 56s
CI / Checkstyle Main (pull_request) Successful in 1m30s

This commit is contained in:
Jan K9f 2025-04-03 11:58:58 +02:00
parent 02453449cd
commit c765ef87e3
Signed by: jank
GPG key ID: 22BEAC760B3333D6
2 changed files with 0 additions and 20 deletions

View file

@ -8,25 +8,6 @@ import { provideAnimationsAsync } from '@angular/platform-browser/animations/asy
import { OAuthStorage, provideOAuthClient } from 'angular-oauth2-oidc';
import { httpInterceptor } from './shared/interceptor/http.interceptor';
/* Example of a custom storage factory - not used in the current implementation
function storageFactory() {
return new (class implements OAuthStorage {
private data: Record<string, string> = {};
getItem(key: string): string | null {
return this.data[key];
}
removeItem(key: string): void {
delete this.data[key];
}
setItem(key: string, data: string): void {
this.data[key] = data;
}
})();
}
*/
export const appConfig: ApplicationConfig = {
providers: [

View file

@ -1,7 +1,6 @@
import { ChangeDetectionStrategy, Component, inject, signal, OnInit } from '@angular/core';
import { CommonModule } from '@angular/common';
import { Router } from '@angular/router';
// Importing components used in templates
import { PlayingCardComponent } from './components/playing-card/playing-card.component';
import { DealerHandComponent } from './components/dealer-hand/dealer-hand.component';
import { PlayerHandComponent } from './components/player-hand/player-hand.component';