From 0d2c2e5dbc1294f2e86eff5b61c1ee7caf1bf0ce Mon Sep 17 00:00:00 2001 From: Peter Burns Date: Thu, 27 Jun 2019 13:01:13 -0700 Subject: [PATCH] Remove other double import (#5565) Debouncer is no longer used in the file, even as a type name. --- lib/utils/flush.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/utils/flush.js b/lib/utils/flush.js index fe8245cb8b..cad0fb645c 100644 --- a/lib/utils/flush.js +++ b/lib/utils/flush.js @@ -8,9 +8,6 @@ Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ import './boot.js'; -/* eslint-disable no-unused-vars */ -import { Debouncer } from '../utils/debounce.js'; // used in type annotations -/* eslint-enable no-unused-vars */ import {enqueueDebouncer, flushDebouncers} from '../utils/debounce.js'; export {enqueueDebouncer};