diff --git a/src/app/core/core.module.ts b/src/app/core/core.module.ts index 03ab18138b..c9383b98d4 100644 --- a/src/app/core/core.module.ts +++ b/src/app/core/core.module.ts @@ -1,8 +1,6 @@ import { NgModule, Optional, SkipSelf, ModuleWithProviders } from '@angular/core'; import { CommonModule } from '@angular/common'; -import { SharedModule } from '../shared/shared.module'; - import { isNotEmpty } from '../shared/empty.util'; import { DSpaceRESTv2Service } from './dspace-rest-v2/dspace-rest-v2.service'; import { ObjectCacheService } from './cache/object-cache.service'; @@ -56,10 +54,18 @@ const PROVIDERS = [ ]; @NgModule({ - imports: [...IMPORTS], - declarations: [...DECLARATIONS], - exports: [...EXPORTS], - providers: [...PROVIDERS] + imports: [ + ...IMPORTS + ], + declarations: [ + ...DECLARATIONS + ], + exports: [ + ...EXPORTS + ], + providers: [ + ...PROVIDERS + ] }) export class CoreModule {