From b99d238ad35a0d2c843fb84d7f1b6441cd11d923 Mon Sep 17 00:00:00 2001 From: Michael Bromley Date: Wed, 18 Oct 2023 13:40:46 +0200 Subject: [PATCH] chore(core): tidy up unused imports --- packages/core/src/service/services/product.service.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/packages/core/src/service/services/product.service.ts b/packages/core/src/service/services/product.service.ts index 39ec1c63c3..eedbde2b17 100644 --- a/packages/core/src/service/services/product.service.ts +++ b/packages/core/src/service/services/product.service.ts @@ -2,7 +2,6 @@ import { Injectable } from '@nestjs/common'; import { AssignProductsToChannelInput, CreateProductInput, - CustomerListOptions, DeletionResponse, DeletionResult, ProductListOptions, @@ -41,12 +40,9 @@ import { TranslatorService } from '../helpers/translator/translator.service'; import { AssetService } from './asset.service'; import { ChannelService } from './channel.service'; -import { CollectionService } from './collection.service'; import { FacetValueService } from './facet-value.service'; import { ProductOptionGroupService } from './product-option-group.service'; import { ProductVariantService } from './product-variant.service'; -import { RoleService } from './role.service'; -import { TaxRateService } from './tax-rate.service'; /** * @description @@ -61,12 +57,9 @@ export class ProductService { constructor( private connection: TransactionalConnection, private channelService: ChannelService, - private roleService: RoleService, private assetService: AssetService, private productVariantService: ProductVariantService, private facetValueService: FacetValueService, - private taxRateService: TaxRateService, - private collectionService: CollectionService, private listQueryBuilder: ListQueryBuilder, private translatableSaver: TranslatableSaver, private eventBus: EventBus,