From 57072fad9c460bf4047ac8feff1c3be370d43d97 Mon Sep 17 00:00:00 2001 From: Annie Wang Date: Thu, 3 Sep 2020 12:42:26 -0700 Subject: [PATCH] fix(cdk/tree): remove FocusMonitor from CdkTreeModule providers --- src/cdk/tree/tree-module.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cdk/tree/tree-module.ts b/src/cdk/tree/tree-module.ts index e04798dcc0d2..6e2925e6a623 100644 --- a/src/cdk/tree/tree-module.ts +++ b/src/cdk/tree/tree-module.ts @@ -6,7 +6,6 @@ * found in the LICENSE file at https://angular.io/license */ -import {FocusMonitor} from '@angular/cdk/a11y'; import {NgModule} from '@angular/core'; import {CdkTreeNodeOutlet} from './outlet'; import {CdkTreeNodePadding} from './padding'; @@ -28,6 +27,5 @@ const EXPORTED_DECLARATIONS = [ @NgModule({ exports: EXPORTED_DECLARATIONS, declarations: EXPORTED_DECLARATIONS, - providers: [FocusMonitor] }) export class CdkTreeModule {}