From 44d09d55b6891b36b32e1539ab90116487619948 Mon Sep 17 00:00:00 2001 From: ramonornela Date: Wed, 19 Oct 2016 22:58:16 -0200 Subject: [PATCH] style(IonicErrorHandler): fix lint delete space return --- src/util/ionic-error-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/ionic-error-handler.ts b/src/util/ionic-error-handler.ts index 6db0b3564b..c564743c0e 100644 --- a/src/util/ionic-error-handler.ts +++ b/src/util/ionic-error-handler.ts @@ -5,7 +5,7 @@ * inside a custom `ErrorHandler` as described here: https://angular.io/docs/ts/latest/api/core/index/ErrorHandler-class.html */ export class IonicErrorHandler { - static handleError(err: any) : void { + static handleError(err: any): void { let server = window['IonicDevServer']; if (server) { server.handleError(err);