From eec40792d0a5334d6c2d1d02bf65908c88ab66aa Mon Sep 17 00:00:00 2001 From: gkolokythas Date: Thu, 14 Nov 2019 16:51:13 +0200 Subject: [PATCH] Removes unnecessary module. --- .../contact-content/contact-content.module.ts | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 dmp-frontend/src/app/ui/contact/contact-content/contact-content.module.ts diff --git a/dmp-frontend/src/app/ui/contact/contact-content/contact-content.module.ts b/dmp-frontend/src/app/ui/contact/contact-content/contact-content.module.ts deleted file mode 100644 index e6b490fdc..000000000 --- a/dmp-frontend/src/app/ui/contact/contact-content/contact-content.module.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { NgModule } from '@angular/core'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { CommonUiModule } from '../../../common/ui/common-ui.module'; -import { ContactContentComponent } from './contact-content.component'; - -@NgModule({ - imports: [CommonUiModule, FormsModule, ReactiveFormsModule], - declarations: [ContactContentComponent], - exports: [ContactContentComponent], - entryComponents: [ContactContentComponent] -}) -export class ContactContentModule { - constructor() { } -}