Skip to content
Snippets Groups Projects
Commit 3edcb02a authored by mathias.chouet's avatar mathias.chouet
Browse files

tslint

parent 66f6cbc3
No related branches found
No related tags found
1 merge request!82Resolve "Ajout de la fonctionnalité "Respect des critères""
...@@ -125,7 +125,8 @@ export class VerificateurResultsComponent extends ResultsComponentDirective impl ...@@ -125,7 +125,8 @@ export class VerificateurResultsComponent extends ResultsComponentDirective impl
er er
&& er.hasResultElements() && er.hasResultElements()
&& er.resultElements[vi] && er.resultElements[vi]
&& er.resultElements[vi].hasLog()) && er.resultElements[vi].hasLog())
// tslint:disable-next-line:one-line
{ {
l[i].subLog.addLog(er.resultElements[vi].log); l[i].subLog.addLog(er.resultElements[vi].log);
} }
......
...@@ -4,22 +4,21 @@ import { I18nService } from "./internationalisation.service"; ...@@ -4,22 +4,21 @@ import { I18nService } from "./internationalisation.service";
import { HttpService } from "./http.service"; import { HttpService } from "./http.service";
import { NotificationsService } from "./notifications.service"; import { NotificationsService } from "./notifications.service";
/** /**
* A "Singleton" the TS way, that holds pointers to all services, to be accessed * A "Singleton" the TS way, that holds pointers to all services, to be accessed
* at any time by classes that do not support injection; fed by AppComponent at * at any time by classes that do not support injection; fed by AppComponent at
* construction time * construction time
*/ */
export const ServiceFactory: { export const ServiceFactory: {
applicationSetupService: ApplicationSetupService; applicationSetupService: ApplicationSetupService;
formulaireService: FormulaireService; formulaireService: FormulaireService;
i18nService: I18nService; i18nService: I18nService;
httpService: HttpService; httpService: HttpService;
notificationsService: NotificationsService; notificationsService: NotificationsService;
} = { } = {
applicationSetupService: undefined, applicationSetupService: undefined,
formulaireService: undefined, formulaireService: undefined,
i18nService: undefined, i18nService: undefined,
httpService: undefined, httpService: undefined,
notificationsService: undefined notificationsService: undefined
}; };
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment