fix(build) clang-format

This commit is contained in:
Alex Eagle 2015-07-08 18:34:39 -07:00
parent 2c37cc5fcb
commit e79dd6aa2d
1 changed files with 1 additions and 2 deletions

View File

@ -16,8 +16,7 @@ class DbService {
getData() {
var p = PromiseWrapper.completer();
ObservableWrapper.subscribe(this.http.get('./db.json'),
(resp) => { p.resolve(resp.json()); });
ObservableWrapper.subscribe(this.http.get('./db.json'), (resp) => { p.resolve(resp.json()); });
return p.promise;
}