From 76883b31d655ab2270d57bf3d1d39388595ba432 Mon Sep 17 00:00:00 2001 From: Josh Dover Date: Tue, 10 Dec 2019 09:59:15 -0600 Subject: [PATCH] Remove duplicate check --- src/core/public/application/application_service.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/core/public/application/application_service.tsx b/src/core/public/application/application_service.tsx index 42cb31374fa5e..df00c84028e6f 100644 --- a/src/core/public/application/application_service.tsx +++ b/src/core/public/application/application_service.tsx @@ -85,9 +85,7 @@ export class ApplicationService { appBox = { app, - mount: isAppMountDeprecated(app.mount) - ? this.mountContext!.createHandler(plugin, app.mount) - : app.mount, + mount: this.mountContext!.createHandler(plugin, app.mount), }; } else { appBox = { app, mount: app.mount };