Semicolon cleanup.

This commit is contained in:
Alexis Lahouze 2018-06-10 18:09:07 +02:00
parent 8d6465de71
commit 3be01f1240
1 changed files with 5 additions and 5 deletions

View File

@ -79,7 +79,7 @@ export class OperationListComponent implements OnInit {
this.accountService.get(
+this.route.snapshot.paramMap.get('accountId')
).subscribe(account => {
this.account = account
this.account = account;
});
this.route.queryParamMap.subscribe(() => {
@ -108,7 +108,7 @@ export class OperationListComponent implements OnInit {
this.save(operation);
}, (reason) => {
});
};
}
/*
* Load operations.
@ -125,7 +125,7 @@ export class OperationListComponent implements OnInit {
).subscribe((operations: Operation[]) => {
this.operations = operations.reverse();
});
};
}
/*
* Save an operation and return a promise.
@ -144,5 +144,5 @@ export class OperationListComponent implements OnInit {
);
}
);
};
};
}
}