Skip to content

Commit 6342f1a

Browse files
author
trik
committed
fix(cdk/overlay): remove Optional decorator in ConnectedOverlayPositionChange constructor
1 parent 69029b4 commit 6342f1a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/cdk/overlay/position/connected-position.ts

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

99
/** Horizontal dimension of a connection point on the perimeter of the origin or overlay element. */
10-
import {Optional} from '@angular/core';
1110
export type HorizontalConnectionPos = 'start' | 'center' | 'end';
1211

1312
/** Vertical dimension of a connection point on the perimeter of the origin or overlay element. */
@@ -92,7 +91,7 @@ export class ConnectedOverlayPositionChange {
9291
/** The position used as a result of this change. */
9392
public connectionPair: ConnectionPositionPair,
9493
/** @docs-private */
95-
@Optional() public scrollableViewProperties: ScrollingVisibility) {}
94+
public scrollableViewProperties: ScrollingVisibility) {}
9695
}
9796

9897
/**

0 commit comments

Comments
 (0)