Making some fields private

This commit is contained in:
Fabian Stamm
2019-01-18 15:52:55 +01:00
parent f46f4982e9
commit baa1f106e6
2 changed files with 6 additions and 7 deletions

View File

@ -89,9 +89,9 @@ export default class SecureFileWrapper {
private _jwtObservableServer: Observable<(jwt: string) => void> = new Observable();
jwtObservable = this._jwtObservableServer.getPublicApi();
jwt: string;
private jwt: string;
auth_lock = new Lock();
private auth_lock = new Lock();
constructor(private server: string) {
if (this.server.endsWith("/")) {