From a6bbf7c34e2dcf6f35062bd7e99da6fe0117016b Mon Sep 17 00:00:00 2001 From: Lukas Kimpel <lukas.kimpel@mni.thm.de> Date: Mon, 19 Mar 2018 22:51:19 +0100 Subject: [PATCH] Add private access modifier --- src/app/authentication.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/authentication.service.ts b/src/app/authentication.service.ts index 46db9f0d3..9622ce1de 100644 --- a/src/app/authentication.service.ts +++ b/src/app/authentication.service.ts @@ -77,7 +77,7 @@ export class AuthenticationService { return this.user; } - setUser(user: User): void { + private setUser(user: User): void { this.user = user; this.dataStoreService.set(this.STORAGE_KEY, JSON.stringify(this.user)); } -- GitLab