From dea235152c6e7751daa424f07687ec654e32e32d Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Mon, 30 Apr 2018 15:21:58 -0700 Subject: [PATCH] Fix lint errors. --- lib/utils/boot.js | 2 +- lib/utils/debounce.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/boot.js b/lib/utils/boot.js index 8553f14e8f..511b3c5219 100644 --- a/lib/utils/boot.js +++ b/lib/utils/boot.js @@ -8,4 +8,4 @@ Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ -window.JSCompiler_renameProperty = function(prop, obj) { return prop; } +window.JSCompiler_renameProperty = function(prop) { return prop; }; diff --git a/lib/utils/debounce.js b/lib/utils/debounce.js index e40eaddc5a..9262d00a1e 100644 --- a/lib/utils/debounce.js +++ b/lib/utils/debounce.js @@ -111,4 +111,4 @@ export const Debouncer = class Debouncer { debouncer.setConfig(asyncModule, callback); return debouncer; } -} +};