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