From 23cb0b23ea48a4cb3f3e0bec4309b26757cb1eb5 Mon Sep 17 00:00:00 2001 From: Patty RoDee Date: Tue, 9 Jan 2018 12:04:26 -0800 Subject: [PATCH] fix(text-field): Remove extra adapter method Remove `getIdleOutlineStyleValue` method from text field adapter as it was unused following the merge of #1911 --- packages/mdc-textfield/adapter.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/mdc-textfield/adapter.js b/packages/mdc-textfield/adapter.js index 6f9b4c25d53..64438d00f86 100644 --- a/packages/mdc-textfield/adapter.js +++ b/packages/mdc-textfield/adapter.js @@ -129,14 +129,6 @@ class MDCTextFieldAdapter { */ getNativeInput() {} - /** - * Returns the idle outline element's computed style value of the given css property `propertyName`. - * We achieve this via `getComputedStyle(...).getPropertyValue(propertyName)`. - * @param {string} propertyName - * @return {string} - */ - getIdleOutlineStyleValue(propertyName) {} - /** * Returns true if the textfield is focused. * We achieve this via `document.activeElement === this.root_`.