Removed async flag, b/c this doesn't need to perform anything async

ref #56
This commit is contained in:
Nicolai Ort 2020-12-29 19:57:19 +01:00
parent b6043744a9
commit e3ea83bb47
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ export class CreateStatsClient {
/**
* Converts this to a StatsClient entity.
*/
public async toStatsClient(): Promise<StatsClient> {
public toStatsClient(): StatsClient {
let newClient: StatsClient = new StatsClient();
newClient.description = this.description;