Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/construct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,6 @@ export class Node {
* Remove the child with the given name, if present.
*
* @returns Whether a child with the given name was deleted.
* @experimental
*/
public tryRemoveChild(childName: string): boolean {
if (!(childName in this._children)) { return false; }
Expand Down
4 changes: 0 additions & 4 deletions src/dependency.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ export interface IDependable {
*
* This class can be used when a set of constructs which are disjoint in the
* construct tree needs to be combined to be used as a single dependable.
*
* @experimental
*/
export class DependencyGroup implements IDependable {
private readonly _deps = new Array<IDependable>();
Expand Down Expand Up @@ -70,8 +68,6 @@ const DEPENDABLE_SYMBOL = Symbol.for('@aws-cdk/core.DependableTrait');
* Dependable.implement(construct, {
* dependencyRoots: [construct],
* });
*
* @experimental
*/
export abstract class Dependable {
/**
Expand Down