Skip to content

Commit 27779a3

Browse files
authored
Only import each file once (#5588)
Easier on the reader, and silences a lint warning
1 parent c0f86cc commit 27779a3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/elements/dom-if.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
99
*/
1010
import { PolymerElement } from '../../polymer-element.js';
1111

12-
import { templatize } from '../utils/templatize.js';
1312
import { Debouncer } from '../utils/debounce.js';
1413
import { enqueueDebouncer, flush } from '../utils/flush.js';
1514
import { microTask } from '../utils/async.js';
1615
import { root } from '../utils/path.js';
1716
import { wrap } from '../utils/wrap.js';
1817
import { hideElementsGlobally } from '../utils/hide-template-controls.js';
1918
import { fastDomIf, strictTemplatePolicy } from '../utils/settings.js';
20-
import { showHideChildren } from '../utils/templatize.js';
19+
import { showHideChildren, templatize } from '../utils/templatize.js';
2120

2221
/**
2322
* @customElement

0 commit comments

Comments
 (0)