From 8b5a41b684625f492071ca5b148fb47028a9360c Mon Sep 17 00:00:00 2001 From: Valentin Palkovic Date: Fri, 17 Feb 2023 17:15:06 +0100 Subject: [PATCH] Some cleanup --- .../src/client/angular-beta/utils/PropertyExtractor.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/frameworks/angular/src/client/angular-beta/utils/PropertyExtractor.ts b/code/frameworks/angular/src/client/angular-beta/utils/PropertyExtractor.ts index a2c82071368..2e598d603a3 100644 --- a/code/frameworks/angular/src/client/angular-beta/utils/PropertyExtractor.ts +++ b/code/frameworks/angular/src/client/angular-beta/utils/PropertyExtractor.ts @@ -138,11 +138,6 @@ export class PropertyExtractor implements NgModuleMetadata { return { isDeclarable }; }; - static getDecoratorByType = (component: any, type: string) => { - const decorators = reflectionCapabilities.annotations(component); - return decorators.find((d) => this.isDecoratorInstanceOf(d, type)); - }; - static isDecoratorInstanceOf = (decorator: any, name: string) => { let factory; switch (name) {