Skip to content

Commit 19590a9

Browse files
BobobUnicornandrewseguin
authored andcommitted
fix(cdk/tree): fix merge conflict errors
1 parent 39b74bc commit 19590a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/cdk/tree/tree.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,12 @@ import {CdkTreeNodeDef, CdkTreeNodeOutletContext} from './node';
4343
import {CdkTreeNodeOutlet} from './outlet';
4444
import {
4545
getMultipleTreeControlsError,
46-
getTreeControlFunctionsMissingError,
4746
getTreeControlMissingError,
4847
getTreeMissingMatchingNodeDefError,
4948
getTreeMultipleDefaultNodeDefsError,
5049
getTreeNoValidDataSourceError,
5150
} from './tree-errors';
52-
import {BooleanInput, coerceNumberProperty} from '@angular/cdk/coercion';
51+
import {coerceNumberProperty} from '@angular/cdk/coercion';
5352

5453
function coerceObservable<T>(data: T | Observable<T>): Observable<T> {
5554
if (!isObservable(data)) {
@@ -418,7 +417,8 @@ export class CdkTree<T, K = T> implements AfterContentChecked, CollectionViewer,
418417
}
419418

420419
/**
421-
* Expand the data node and all its descendants. If they are already expanded, does nothing. */
420+
* Expand the data node and all its descendants. If they are already expanded, does nothing.
421+
*/
422422
expandDescendants(dataNode: T): void {
423423
if (this.treeControl) {
424424
this.treeControl.expandDescendants(dataNode);

0 commit comments

Comments
 (0)