PR Comments: make FatalErrorsService.add() private

This commit is contained in:
Rudolf Meijering 2019-04-16 20:39:46 +02:00
parent 0c107086a6
commit fe9e6e62df

View file

@ -78,7 +78,7 @@ export class FatalErrorsService {
});
}
public add: FatalErrorsSetup['add'] = (error, source?) => {
private add: FatalErrorsSetup['add'] = (error, source?) => {
const errorInfo = getErrorInfo(error, source);
this.errorInfo$.next(errorInfo);