Semicolon cleanup.

This commit is contained in:
Alexis Lahouze 2018-06-10 18:09:07 +02:00
parent 8d6465de71
commit 3be01f1240

View File

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