From df1a4c009438aec73489fc69912071e0eb151159 Mon Sep 17 00:00:00 2001 From: silvanshade Date: Sat, 18 Jun 2022 15:03:42 -0600 Subject: [PATCH] Cleanup --- packages/app/src/client.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/app/src/client.ts b/packages/app/src/client.ts index 9012541..b1df121 100644 --- a/packages/app/src/client.ts +++ b/packages/app/src/client.ts @@ -25,7 +25,6 @@ export default class Client extends jsrpc.JSONRPCServerAndClient { this.#fromServer = fromServer; } - // eslint-disable-next-line @typescript-eslint/require-await async start(): Promise { // process "window/logMessage": client <- server this.addMethod(proto.LogMessageNotification.type.method, (params) => { @@ -70,7 +69,6 @@ export default class Client extends jsrpc.JSONRPCServerAndClient { await Promise.all([this.processNotifications(), this.processRequests()]); } - // eslint-disable-next-line @typescript-eslint/require-await async processNotifications(): Promise { for await (const notification of this.#fromServer.notifications) { await this.receiveAndSend(notification);