diff --git a/src/construct.ts b/src/construct.ts index ba2988b8..a7b52f64 100644 --- a/src/construct.ts +++ b/src/construct.ts @@ -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; } diff --git a/src/dependency.ts b/src/dependency.ts index 93c6b8fb..6046031f 100644 --- a/src/dependency.ts +++ b/src/dependency.ts @@ -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(); @@ -70,8 +68,6 @@ const DEPENDABLE_SYMBOL = Symbol.for('@aws-cdk/core.DependableTrait'); * Dependable.implement(construct, { * dependencyRoots: [construct], * }); - * - * @experimental */ export abstract class Dependable { /**