From e3ea83bb4782565e773e97019a92aa71f92c2809 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 29 Dec 2020 19:57:19 +0100 Subject: [PATCH] Removed async flag, b/c this doesn't need to perform anything async ref #56 --- src/models/actions/CreateStatsClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/actions/CreateStatsClient.ts b/src/models/actions/CreateStatsClient.ts index 436264c..6bef901 100644 --- a/src/models/actions/CreateStatsClient.ts +++ b/src/models/actions/CreateStatsClient.ts @@ -22,7 +22,7 @@ export class CreateStatsClient { /** * Converts this to a StatsClient entity. */ - public async toStatsClient(): Promise { + public toStatsClient(): StatsClient { let newClient: StatsClient = new StatsClient(); newClient.description = this.description;