From bfee4277e986f07d882840a3cb9c0edec4e33d38 Mon Sep 17 00:00:00 2001 From: Neil Fraser Date: Sun, 10 May 2015 23:21:11 -0700 Subject: [PATCH] Suppress redefinition warning. --- core/msg.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/msg.js b/core/msg.js index dda9b1730..c7e0eb906 100644 --- a/core/msg.js +++ b/core/msg.js @@ -40,6 +40,7 @@ goog.getMsgOrig = goog.getMsg; * @param {string} str Translatable string, places holders in the form {$foo}. * @param {Object=} opt_values Maps place holder name to value. * @return {string} message with placeholders filled. + * @suppress {duplicate} */ goog.getMsg = function(str, opt_values) { var key = goog.getMsg.blocklyMsgMap[str];