From ab80c981b116baa543ef83e16432c8b6e4c901c3 Mon Sep 17 00:00:00 2001 From: Alex Nicksay Date: Thu, 29 Dec 2016 10:19:54 -0500 Subject: [PATCH] Suppress "non-existent property" warnings in spf.url Tighter property checking in JsCompiler is warning about the `username` and `password` property access on `a` elements. Temporarily suppress these warnings until the default externs can be fixed or the property accesses are removed. --- src/client/url/url.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/url/url.js b/src/client/url/url.js index 8a9a9c02..d2deeb82 100644 --- a/src/client/url/url.js +++ b/src/client/url/url.js @@ -7,6 +7,7 @@ * @fileoverview URL manipulation functions. * * @author nicksay@google.com (Alex Nicksay) + * @suppress {missingProperties} */ goog.provide('spf.url');