removed commented code

This commit is contained in:
Timo 2021-02-22 11:54:27 +02:00
parent d72cf7be9a
commit 50a7425433

View File

@ -283,11 +283,10 @@ export class AppStateService {
}
project.files = files.map((f) => new FileStatusWrapper(f, this._userService.getNameForId(f.currentReviewer)));
// this._automaticallyReanalyseErrorFiles(project);
this._computeStats();
// fileReanalysedEvent.forEach((file) => this.fileReanalysed.emit(file));
// fileStatusChangedEvent.forEach((file) => this.fileChanged.emit(file));
fileReanalysedEvent.forEach((file) => this.fileReanalysed.emit(file));
fileStatusChangedEvent.forEach((file) => this.fileChanged.emit(file));
return files;
}