From c1a494bc370f8caa1e59140a7abb54a9f6e3cddc Mon Sep 17 00:00:00 2001 From: Yegor Jbanov Date: Fri, 19 Jun 2015 18:52:46 -0700 Subject: [PATCH] chore(ShadowDomStrategy): remove redundant field styleInliner --- .../dom/shadow_dom/emulated_scoped_shadow_dom_strategy.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/angular2/src/render/dom/shadow_dom/emulated_scoped_shadow_dom_strategy.ts b/modules/angular2/src/render/dom/shadow_dom/emulated_scoped_shadow_dom_strategy.ts index 5d11509ef2..616253e4f6 100644 --- a/modules/angular2/src/render/dom/shadow_dom/emulated_scoped_shadow_dom_strategy.ts +++ b/modules/angular2/src/render/dom/shadow_dom/emulated_scoped_shadow_dom_strategy.ts @@ -27,11 +27,8 @@ import { * - see `ShadowCss` for more information and limitations. */ export class EmulatedScopedShadowDomStrategy extends EmulatedUnscopedShadowDomStrategy { - styleInliner: StyleInliner; - constructor(styleInliner: StyleInliner, styleUrlResolver: StyleUrlResolver, styleHost) { super(styleInliner, styleUrlResolver, styleHost); - this.styleInliner = styleInliner; } processStyleElement(hostComponentId: string, templateUrl: string, styleEl): Promise {