Some cleanup

This commit is contained in:
Valentin Palkovic 2023-02-17 17:15:06 +01:00
parent e483723de5
commit 8b5a41b684

View File

@ -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) {