Merge pull request #8812 from ramonornela/lint_error_handler

style(IonicErrorHandler): fix lint delete space return
This commit is contained in:
Manu Mtz.-Almeida
2016-10-20 10:43:29 +02:00
committed by GitHub

View File

@ -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);