#674 remove un used imports

This commit is contained in:
Dániel Péter Sipos
2020-11-13 14:29:03 +01:00
parent 7b160cdbd3
commit cb3131e31b
3 changed files with 1 additions and 3 deletions

View File

@@ -18,7 +18,6 @@ import { SearchService } from '../core/shared/search/search.service';
import { currentPath } from '../shared/utils/route.utils';
import { Router } from '@angular/router';
import { Context } from '../core/shared/context.model';
import { followLink } from '../shared/utils/follow-link-config.model';
@Component({
selector: 'ds-search',

View File

@@ -6,7 +6,6 @@ import { HALLink } from '../../shared/hal-link.model';
import { HALResource } from '../../shared/hal-resource.model';
import { ResourceType } from '../../shared/resource-type';
import * as decorators from './build-decorators';
import { getDataServiceFor } from './build-decorators';
import { LinkService } from './link.service';
const spyOnFunction = <T>(obj: T, func: keyof T) => {

View File

@@ -1,4 +1,4 @@
import { Component, Inject, Input } from '@angular/core';
import { Component, Input } from '@angular/core';
import { Collection } from '../../../core/shared/collection.model';
import { AbstractListableElementComponent } from '../../object-collection/shared/object-collection-element/abstract-listable-element.component';