From 42a34f0f533ea0e132dcd7e773c562300310364f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D=C3=ADaz?= Date: Fri, 28 Jul 2017 09:54:08 +0200 Subject: [PATCH] Removed duplicated semicolons --- src/app/shared/security/httpClient.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/shared/security/httpClient.service.ts b/src/app/shared/security/httpClient.service.ts index 01b61139..06dad05f 100644 --- a/src/app/shared/security/httpClient.service.ts +++ b/src/app/shared/security/httpClient.service.ts @@ -31,7 +31,7 @@ export class HttpClient { return observer.next(data); }, (error: any) => { if (error.status === 400 || error.status === 500) { - this.auth.setLogged(false);; + this.auth.setLogged(false); this.headers.delete('x-csrf-token'); this.router.navigate(['/login']); } @@ -48,7 +48,7 @@ export class HttpClient { return observer.next(res); }, (error: any) => { if (error.status === 400 || error.status === 500) { - this.auth.setLogged(false);; + this.auth.setLogged(false); this.headers.delete('x-csrf-token'); this.router.navigate(['/login']); } @@ -65,7 +65,7 @@ export class HttpClient { return observer.next(data); }, (error: any) => { if (error.status === 400 || error.status === 500) { - this.auth.setLogged(false);; + this.auth.setLogged(false); this.headers.delete('x-csrf-token'); this.router.navigate(['/login']); }