From dae63e3deedf04d79a71a1f63a67b4ac6048278c Mon Sep 17 00:00:00 2001 From: Tim van der Lippe Date: Fri, 17 Aug 2018 17:30:02 +0200 Subject: [PATCH] Cleanup element-mixin leftovers from modulizer --- lib/mixins/element-mixin.js | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/lib/mixins/element-mixin.js b/lib/mixins/element-mixin.js index 7cec1189c6..12c02bb550 100644 --- a/lib/mixins/element-mixin.js +++ b/lib/mixins/element-mixin.js @@ -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} @@ -760,7 +749,7 @@ function _regLog(prototype) { */ export function register(prototype) { registrations.push(prototype); - undefined && _regLog(prototype); + _regLog(prototype); } /**