Skip to content
Snippets Groups Projects
Verified Commit a6bbf7c3 authored by Lukas Maximilian Kimpel's avatar Lukas Maximilian Kimpel
Browse files

Add private access modifier

parent d04fbc84
Branches
Tags
No related merge requests found
......@@ -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));
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment