From ee26084d6adcd4c25e470cd68c2419c2a7eb393d Mon Sep 17 00:00:00 2001 From: Yura Bondarenko Date: Thu, 25 Aug 2022 15:53:13 +0200 Subject: [PATCH] Fix unused imports --- src/app/core/data/persistent-identifier-data.service.ts | 4 ---- src/app/core/resource-policy/resource-policy-data.service.ts | 1 - 2 files changed, 5 deletions(-) diff --git a/src/app/core/data/persistent-identifier-data.service.ts b/src/app/core/data/persistent-identifier-data.service.ts index 661d8c044d..bd7d12a7c6 100644 --- a/src/app/core/data/persistent-identifier-data.service.ts +++ b/src/app/core/data/persistent-identifier-data.service.ts @@ -5,15 +5,11 @@ * * http://www.dspace.org/license/ */ -import { BaseDataService } from './base/base-data.service'; import { RequestService } from './request.service'; import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service'; import { ObjectCacheService } from '../cache/object-cache.service'; import { HALEndpointService } from '../shared/hal-endpoint.service'; import { IdentifiableDataService } from './base/identifiable-data.service'; -import { FollowLinkConfig } from '../../shared/utils/follow-link-config.model'; -import { Observable } from 'rxjs'; -import { RemoteData } from './remote-data'; import { DSpaceObject } from '../shared/dspace-object.model'; export class PersistentIdentifierDataService extends IdentifiableDataService { diff --git a/src/app/core/resource-policy/resource-policy-data.service.ts b/src/app/core/resource-policy/resource-policy-data.service.ts index 097e4fc447..5190ff30ed 100644 --- a/src/app/core/resource-policy/resource-policy-data.service.ts +++ b/src/app/core/resource-policy/resource-policy-data.service.ts @@ -25,7 +25,6 @@ import { PutRequest } from '../data/request.models'; import { GenericConstructor } from '../shared/generic-constructor'; import { ResponseParsingService } from '../data/parsing.service'; import { StatusCodeOnlyResponseParsingService } from '../data/status-code-only-response-parsing.service'; -import { HALLink } from '../shared/hal-link.model'; import { EPersonDataService } from '../eperson/eperson-data.service'; import { GroupDataService } from '../eperson/group-data.service'; import { IdentifiableDataService } from '../data/base/identifiable-data.service';