From 5840fd8fc16980ade4af6735f991e08f8fca65e7 Mon Sep 17 00:00:00 2001 From: elinuxhenrik Date: Tue, 9 Feb 2021 15:18:44 +0100 Subject: [PATCH] Remove unused method Change-Id: Ic5181985f7b6f4536d2a629ffa13af00c5aff581 Signed-off-by: elinuxhenrik Issue-ID: NONRTRIC-399 --- webapp-frontend/src/app/services/ei/ei.service.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/webapp-frontend/src/app/services/ei/ei.service.ts b/webapp-frontend/src/app/services/ei/ei.service.ts index bb429e3..42ad221 100644 --- a/webapp-frontend/src/app/services/ei/ei.service.ts +++ b/webapp-frontend/src/app/services/ei/ei.service.ts @@ -21,7 +21,7 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; -import { EIJob, EIProducer, ProducerStatus, ProducerRegistrationInfo } from '../../interfaces/ei.types'; +import { EIJob, ProducerStatus, ProducerRegistrationInfo } from '../../interfaces/ei.types'; /** * Services for calling the EI endpoints. @@ -67,9 +67,4 @@ export class EIService { const url = this.buildPath(this.eiProducersPath, producerId, this.eiProducerStatusPath); return this.httpClient.get(url); } - - getEIProducers(): Observable { - const url = this.buildPath(this.eiProducersPath); - return this.httpClient.get(url); - } } -- 2.16.6