From 01869f9fa8333ee8a57c546dda30e36eb72c1505 Mon Sep 17 00:00:00 2001 From: Yegor Jbanov Date: Fri, 17 Apr 2015 13:56:13 -0700 Subject: [PATCH] chore(format): format a TS file --- modules/angular2/src/facade/collection.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/angular2/src/facade/collection.ts b/modules/angular2/src/facade/collection.ts index 367d9164c5..6b0f8581cc 100644 --- a/modules/angular2/src/facade/collection.ts +++ b/modules/angular2/src/facade/collection.ts @@ -168,9 +168,7 @@ export class ListWrapper { return true; } static slice(l: List, from: int, to: int): List { return l.slice(from, to); } - static splice(l:List, from:int, length:int):List { - return l.splice(from, length); - } + static splice(l: List, from: int, length: int): List { return l.splice(from, length); } static sort(l: List, compareFn: (a: T, b: T) => number) { l.sort(compareFn); } }