Skip to content

Commit 01869f9

Browse files
committed
chore(format): format a TS file
1 parent 526c51d commit 01869f9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

modules/angular2/src/facade/collection.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,7 @@ export class ListWrapper {
168168
return true;
169169
}
170170
static slice<T>(l: List<T>, from: int, to: int): List<T> { return l.slice(from, to); }
171-
static splice<T>(l:List<T>, from:int, length:int):List<T> {
172-
return l.splice(from, length);
173-
}
171+
static splice<T>(l: List<T>, from: int, length: int): List<T> { return l.splice(from, length); }
174172
static sort<T>(l: List<T>, compareFn: (a: T, b: T) => number) { l.sort(compareFn); }
175173
}
176174

0 commit comments

Comments
 (0)