From 27779a32cfab083a03c58cb991ba9a516869dc89 Mon Sep 17 00:00:00 2001 From: Peter Burns Date: Thu, 5 Sep 2019 12:52:26 -0700 Subject: [PATCH] Only import each file once (#5588) Easier on the reader, and silences a lint warning --- lib/elements/dom-if.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/elements/dom-if.js b/lib/elements/dom-if.js index 12250e4b66..22d3ca664c 100644 --- a/lib/elements/dom-if.js +++ b/lib/elements/dom-if.js @@ -9,7 +9,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN */ import { PolymerElement } from '../../polymer-element.js'; -import { templatize } from '../utils/templatize.js'; import { Debouncer } from '../utils/debounce.js'; import { enqueueDebouncer, flush } from '../utils/flush.js'; import { microTask } from '../utils/async.js'; @@ -17,7 +16,7 @@ import { root } from '../utils/path.js'; import { wrap } from '../utils/wrap.js'; import { hideElementsGlobally } from '../utils/hide-template-controls.js'; import { fastDomIf, strictTemplatePolicy } from '../utils/settings.js'; -import { showHideChildren } from '../utils/templatize.js'; +import { showHideChildren, templatize } from '../utils/templatize.js'; /** * @customElement