Skip to content

Commit

Permalink
Only import each file once (#5588)
Browse files Browse the repository at this point in the history
Easier on the reader, and silences a lint warning
  • Loading branch information
rictic authored Sep 5, 2019
1 parent c0f86cc commit 27779a3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/elements/dom-if.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,14 @@ 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';
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
Expand Down

0 comments on commit 27779a3

Please sign in to comment.