From 3320e8d7af74ebaa76cb55f06086ffa6289c3efb Mon Sep 17 00:00:00 2001 From: "nharshunova@exadel.com" Date: Wed, 23 Jun 2021 22:45:16 +0300 Subject: [PATCH] style(uip-plugin): remove unnecessary semicolon --- src/core/plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/plugin.ts b/src/core/plugin.ts index 2a2a56d7..b5438071 100644 --- a/src/core/plugin.ts +++ b/src/core/plugin.ts @@ -48,5 +48,5 @@ export abstract class UIPPlugin extends ESLBaseElement { } /** Handles root state change*/ - protected _onRootStateChange(): void {}; + protected _onRootStateChange(): void {} }