docs(core): cleanup todo notes in ContentChild documentation examples (#26543)

PR Close #26543
This commit is contained in:
Deltatiger 2018-10-18 19:22:20 +05:30 committed by Andrew Kushnir
parent 4efb460127
commit 83c9bff242
2 changed files with 0 additions and 3 deletions

View File

@ -15,7 +15,6 @@ class ChildDirective {
@Directive({selector: 'someDir'})
class SomeDir implements AfterContentInit {
// TODO(issue/24571): remove '!'.
@ContentChild(ChildDirective) contentChild !: ChildDirective;
ngAfterContentInit() {

View File

@ -23,9 +23,7 @@ export class Pane {
`
})
export class Tab {
// TODO(issue/24571): remove '!'.
@ContentChildren(Pane) topLevelPanes !: QueryList<Pane>;
// TODO(issue/24571): remove '!'.
@ContentChildren(Pane, {descendants: true}) arbitraryNestedPanes !: QueryList<Pane>;
get serializedPanes(): string {