Skip to content

Commit

Permalink
Merge pull request #5330 from Polymer/TimvdLippe-patch-1
Browse files Browse the repository at this point in the history
Cleanup element-mixin leftovers from modulizer
  • Loading branch information
kevinpschaaf authored Aug 17, 2018
2 parents 46d3719 + dae63e3 commit 568840b
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions lib/mixins/element-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -720,17 +720,6 @@ export const ElementMixin = dedupingMixin(base => {
return PolymerElement;
});

/**
* Provides basic tracking of element definitions (registrations) and
* instance counts.
*
* @summary Provides basic tracking of element definitions (registrations) and
* instance counts.
*/
`TODO(modulizer): A namespace named Polymer.telemetry was
declared here. The surrounding comments should be reviewed,
and this string can then be deleted`;

/**
* Total number of Polymer element instances created.
* @type {number}
Expand Down Expand Up @@ -760,7 +749,7 @@ function _regLog(prototype) {
*/
export function register(prototype) {
registrations.push(prototype);
undefined && _regLog(prototype);
_regLog(prototype);
}

/**
Expand Down

0 comments on commit 568840b

Please sign in to comment.