Skip to content

Commit

Permalink
fix(base): Remove "foundation_" from MDCComponent
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 313433794
  • Loading branch information
patrickrodee authored and copybara-github committed May 27, 2020
1 parent d91794c commit 8c6d7e0
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions packages/mdc-base/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,6 @@ export class MDCComponent<FoundationType extends MDCFoundation> {

protected foundation: FoundationType;

// TODO(b/157223372): Remove once complete
protected get foundation_(): FoundationType {
return this.foundation;
}

// TODO(b/157223372): Remove once complete
protected set foundation_(f: FoundationType) {
this.foundation = f;
}

constructor(
public root: Element, foundation?: FoundationType, ...args: unknown[]) {
this.initialize(...args);
Expand Down

0 comments on commit 8c6d7e0

Please sign in to comment.