Skip to content

Commit

Permalink
Fix lint issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Koen Pauwels committed Sep 7, 2023
1 parent 8175a9d commit 11e98f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/core/data/processes/process-data.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ export const TIMER_FACTORY = new InjectionToken<(callback: (...args: any[]) => v
@Injectable()
@dataService(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
* @protected
Expand All @@ -51,10 +55,6 @@ export class ProcessDataService extends IdentifiableDataService<Process> impleme
ProcessDataService.statusIs(process, ProcessStatus.FAILED);
}

private findAllData: FindAllData<Process>;
private deleteData: DeleteData<Process>;
protected activelyBeingPolled: Map<string, NodeJS.Timeout> = new Map();

constructor(
protected requestService: RequestService,
protected rdbService: RemoteDataBuildService,
Expand Down

0 comments on commit 11e98f7

Please sign in to comment.