From d4c9fae267c6ac49db1da70bd81ef563bc8b5ea0 Mon Sep 17 00:00:00 2001 From: Ankur Oberoi Date: Thu, 26 Mar 2020 17:36:50 -0700 Subject: [PATCH] changes App.handleError() to a private method --- src/App.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.ts b/src/App.ts index 6faa6a7a5..ac13e3d3c 100644 --- a/src/App.ts +++ b/src/App.ts @@ -622,7 +622,7 @@ export default class App { /** * Global error handler. The final destination for all errors (hopefully). */ - public handleError(error: Error): Promise { + private handleError(error: Error): Promise { return this.errorHandler(asCodedError(error)); }