From e3c6ad807b3baead4f57a505322d207dac5499d9 Mon Sep 17 00:00:00 2001 From: Kim Shepherd Date: Thu, 24 Apr 2025 16:18:41 +0200 Subject: [PATCH] #4172 Remove unneeded SearchService from RSS --- src/app/shared/rss-feed/rss.component.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/shared/rss-feed/rss.component.ts b/src/app/shared/rss-feed/rss.component.ts index 8c81f7975e..1ed29697bf 100644 --- a/src/app/shared/rss-feed/rss.component.ts +++ b/src/app/shared/rss-feed/rss.component.ts @@ -33,7 +33,6 @@ import { GroupDataService } from '../../core/eperson/group-data.service'; import { PaginationService } from '../../core/pagination/pagination.service'; import { LinkHeadService } from '../../core/services/link-head.service'; import { getFirstCompletedRemoteData } from '../../core/shared/operators'; -import { SearchService } from '../../core/shared/search/search.service'; import { SearchConfigurationService } from '../../core/shared/search/search-configuration.service'; import { hasValue, @@ -69,7 +68,6 @@ export class RSSComponent implements OnInit, OnDestroy, OnChanges { private linkHeadService: LinkHeadService, private configurationService: ConfigurationDataService, private searchConfigurationService: SearchConfigurationService, - private searchService: SearchService, private router: Router, private route: ActivatedRoute, protected paginationService: PaginationService,