mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
Fix lint issue.
This commit is contained in:
@@ -35,6 +35,10 @@ export const TIMER_FACTORY = new InjectionToken<(callback: (...args: any[]) => v
|
|||||||
@Injectable()
|
@Injectable()
|
||||||
@dataService(PROCESS)
|
@dataService(PROCESS)
|
||||||
export class ProcessDataService extends IdentifiableDataService<Process> implements FindAllData<Process>, DeleteData<Process> {
|
export class ProcessDataService extends IdentifiableDataService<Process> implements FindAllData<Process>, DeleteData<Process> {
|
||||||
|
private findAllData: FindAllData<Process>;
|
||||||
|
private deleteData: DeleteData<Process>;
|
||||||
|
protected activelyBeingPolled: Map<string, NodeJS.Timeout> = new Map();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return true if the given process has the given status
|
* Return true if the given process has the given status
|
||||||
* @protected
|
* @protected
|
||||||
@@ -51,10 +55,6 @@ export class ProcessDataService extends IdentifiableDataService<Process> impleme
|
|||||||
ProcessDataService.statusIs(process, ProcessStatus.FAILED);
|
ProcessDataService.statusIs(process, ProcessStatus.FAILED);
|
||||||
}
|
}
|
||||||
|
|
||||||
private findAllData: FindAllData<Process>;
|
|
||||||
private deleteData: DeleteData<Process>;
|
|
||||||
protected activelyBeingPolled: Map<string, NodeJS.Timeout> = new Map();
|
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
protected requestService: RequestService,
|
protected requestService: RequestService,
|
||||||
protected rdbService: RemoteDataBuildService,
|
protected rdbService: RemoteDataBuildService,
|
||||||
|
Reference in New Issue
Block a user