diff --git a/packages/core/src/debug/debug_node.ts b/packages/core/src/debug/debug_node.ts index 6c760209da..9be8743c55 100644 --- a/packages/core/src/debug/debug_node.ts +++ b/packages/core/src/debug/debug_node.ts @@ -38,11 +38,6 @@ export class DebugNode { get references(): {[key: string]: any} { return this._debugContext.references; } get providerTokens(): any[] { return this._debugContext.providerTokens; } - - /** - * @deprecated since v4 - */ - get source(): string { return 'Deprecated since v4'; } } /** diff --git a/tools/public_api_guard/core/core.d.ts b/tools/public_api_guard/core/core.d.ts index bfb1b2ba7d..38837e4208 100644 --- a/tools/public_api_guard/core/core.d.ts +++ b/tools/public_api_guard/core/core.d.ts @@ -324,7 +324,6 @@ export declare class DebugNode { readonly references: { [key: string]: any; }; - /** @deprecated */ readonly source: string; constructor(nativeNode: any, parent: DebugNode | null, _debugContext: DebugContext); }