Fix lint issue.

This commit is contained in:
Koen Pauwels
2023-09-07 11:36:52 +02:00
parent 8175a9d014
commit 11e98f7e20

View File

@@ -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,