Skip to content

Commit

Permalink
PR Comments: make FatalErrorsService.add() private
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolf committed Apr 16, 2019
1 parent 0c10708 commit fe9e6e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/public/fatal_errors/fatal_errors_service.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit fe9e6e6

Please sign in to comment.