Skip to content

Commit

Permalink
Remove static flag from injection context
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrishchenko committed May 7, 2024
1 parent 2a86ac7 commit 66fb25e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions src/converter/injection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ export enum InjectionType {
}

export interface InjectionContext extends ConverterContext {
/** @deprecated */
static: boolean

type: InjectionType
}

Expand Down
1 change: 0 additions & 1 deletion src/converter/plugins/InjectionPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export class InjectionService {
): string[] {
const injectionContext: InjectionContext = {
...context,
static: type === InjectionType.STATIC_MEMBER,
type,
}

Expand Down

0 comments on commit 66fb25e

Please sign in to comment.