Skip to content

Commit d3efac6

Browse files
zelliottmmalerba
authored andcommitted
Fixed TSLint error.
1 parent 1163b1e commit d3efac6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/dev-app/dev-app/dev-app-layout.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
*/
88

99
import {Directionality} from '@angular/cdk/bidi';
10-
import {OverlayContainer} from '@angular/cdk/overlay';
1110
import {ChangeDetectorRef, Component, ElementRef, Inject, ViewEncapsulation} from '@angular/core';
1211
import {DevAppRippleOptions} from './ripple-options';
1312
import {DevAppDirectionality} from './dev-app-directionality';
@@ -86,8 +85,7 @@ export class DevAppLayout {
8685
];
8786

8887
constructor(
89-
private _element: ElementRef<HTMLElement>, private _overlayContainer: OverlayContainer,
90-
public rippleOptions: DevAppRippleOptions,
88+
private _element: ElementRef<HTMLElement>, public rippleOptions: DevAppRippleOptions,
9189
@Inject(Directionality) public dir: DevAppDirectionality, cdr: ChangeDetectorRef) {
9290
dir.change.subscribe(() => cdr.markForCheck());
9391
}

0 commit comments

Comments
 (0)