Skip to content

Commit a199aa9

Browse files
committed
Fix lint warnings.
1 parent 36c4dfa commit a199aa9

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

lib/legacy/class.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
99
*/
1010

1111
import { LegacyElementMixin } from './legacy-element-mixin.js';
12-
import { DomModule } from '../elements/dom-module.js';
13-
import { strictTemplatePolicy } from '../utils/settings.js';
1412

1513
let metaProps = {
1614
attached: true,

lib/mixins/element-mixin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ export const ElementMixin = dedupingMixin(base => {
281281
function getTemplateFromDomModule(is) {
282282
let template = null;
283283
if (is && allowTemplateFromDomModule) {
284-
template = DomModule.import(is, 'template')
284+
template = DomModule.import(is, 'template');
285285
// Under strictTemplatePolicy, require any element with an `is`
286286
// specified to have a dom-module
287287
if (strictTemplatePolicy && !template) {

0 commit comments

Comments
 (0)