Skip to content

Commit

Permalink
Fix closure compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
philipwalton committed Jun 2, 2017
1 parent 9f7359a commit 432629f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/externs/clean-url-tracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Public options for the CleanUrlTracker.
* @typedef {{
* stripQuery: (boolean|undefined),
* queryParamsWhitelist: (Array|unefined),
* queryParamsWhitelist: (Array|undefined),
* queryDimensionIndex: (number|undefined),
* indexFilename: (string|undefined),
* trailingSlash: (string|undefined),
Expand Down
3 changes: 1 addition & 2 deletions lib/plugins/clean-url-tracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,7 @@ class CleanUrlTracker {
/**
* Accpets a raw URL search string and returns a new search string containing
* only the site search params (if they exist).
* @param {string} searchString A whitelist of URL params.
* @param {string} search The URL search string (starting with '?').
* @param {string} searchString The URL search string (starting with '?').
* @return {string} The query string
*/
stripNonWhitelistedQueryParams(searchString) {
Expand Down

0 comments on commit 432629f

Please sign in to comment.