Skip to content

Commit dae63e3

Browse files
authored
Cleanup element-mixin leftovers from modulizer
1 parent 46d3719 commit dae63e3

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

lib/mixins/element-mixin.js

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -720,17 +720,6 @@ export const ElementMixin = dedupingMixin(base => {
720720
return PolymerElement;
721721
});
722722

723-
/**
724-
* Provides basic tracking of element definitions (registrations) and
725-
* instance counts.
726-
*
727-
* @summary Provides basic tracking of element definitions (registrations) and
728-
* instance counts.
729-
*/
730-
`TODO(modulizer): A namespace named Polymer.telemetry was
731-
declared here. The surrounding comments should be reviewed,
732-
and this string can then be deleted`;
733-
734723
/**
735724
* Total number of Polymer element instances created.
736725
* @type {number}
@@ -760,7 +749,7 @@ function _regLog(prototype) {
760749
*/
761750
export function register(prototype) {
762751
registrations.push(prototype);
763-
undefined && _regLog(prototype);
752+
_regLog(prototype);
764753
}
765754

766755
/**

0 commit comments

Comments
 (0)