chore(ShadowDomStrategy): remove redundant field styleInliner
This commit is contained in:
parent
783654e6a3
commit
c1a494bc37
|
@ -27,11 +27,8 @@ import {
|
||||||
* - see `ShadowCss` for more information and limitations.
|
* - see `ShadowCss` for more information and limitations.
|
||||||
*/
|
*/
|
||||||
export class EmulatedScopedShadowDomStrategy extends EmulatedUnscopedShadowDomStrategy {
|
export class EmulatedScopedShadowDomStrategy extends EmulatedUnscopedShadowDomStrategy {
|
||||||
styleInliner: StyleInliner;
|
|
||||||
|
|
||||||
constructor(styleInliner: StyleInliner, styleUrlResolver: StyleUrlResolver, styleHost) {
|
constructor(styleInliner: StyleInliner, styleUrlResolver: StyleUrlResolver, styleHost) {
|
||||||
super(styleInliner, styleUrlResolver, styleHost);
|
super(styleInliner, styleUrlResolver, styleHost);
|
||||||
this.styleInliner = styleInliner;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
processStyleElement(hostComponentId: string, templateUrl: string, styleEl): Promise<any> {
|
processStyleElement(hostComponentId: string, templateUrl: string, styleEl): Promise<any> {
|
||||||
|
|
Loading…
Reference in New Issue