From e2bdfbbedb0fa9dac582c14df3d29f988d0f45ac Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 9 Aug 2024 22:35:26 +0300 Subject: [PATCH] server: Remove now comment --- src/becca/entities/abstract_becca_entity.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/becca/entities/abstract_becca_entity.ts b/src/becca/entities/abstract_becca_entity.ts index 45bb2b77d..cd169c0b2 100644 --- a/src/becca/entities/abstract_becca_entity.ts +++ b/src/becca/entities/abstract_becca_entity.ts @@ -101,7 +101,6 @@ abstract class AbstractBeccaEntity> { /** * Saves entity - executes SQL, but doesn't commit the transaction on its own */ - // TODO: opts not used but called a few times, maybe should be used by derived classes or passed to beforeSaving. save(opts?: {}): this { const constructorData = (this.constructor as unknown as ConstructorData); const entityName = constructorData.entityName;