From 1e35cd56673204aea1c8e5eabe3f6639a6577bc1 Mon Sep 17 00:00:00 2001 From: Chrystian Huot Date: Thu, 28 Nov 2019 08:24:04 -0500 Subject: [PATCH] Remove duplicated dependencies on rdio-scanner.moduel --- .../app/components/rdio-scanner/rdio-scanner.module.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/client/src/app/components/rdio-scanner/rdio-scanner.module.ts b/client/src/app/components/rdio-scanner/rdio-scanner.module.ts index 2dcac79..44f1f5c 100644 --- a/client/src/app/components/rdio-scanner/rdio-scanner.module.ts +++ b/client/src/app/components/rdio-scanner/rdio-scanner.module.ts @@ -1,7 +1,4 @@ -import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; -import { FlexLayoutModule } from '@angular/flex-layout'; -import { MatSidenavModule } from '@angular/material/sidenav'; import { AppSharedModule } from '../../shared/shared.module'; import { AppRdioScannerCallQueryService } from './rdio-scanner-call-query.service'; import { AppRdioScannerCallSubscriptionService } from './rdio-scanner-call-subscription.service'; @@ -13,12 +10,7 @@ import { AppRdioScannerComponent } from './rdio-scanner.component'; @NgModule({ declarations: [AppRdioScannerComponent], exports: [AppRdioScannerComponent], - imports: [ - AppSharedModule, - CommonModule, - FlexLayoutModule, - MatSidenavModule, - ], + imports: [AppSharedModule], providers: [ AppRdioScannerCallQueryService, AppRdioScannerCallsQueryService,