Browse Source

Suppressing access warnings generated by access of 'other' in the mergeFrom functions.

pull/567/head
Lara Scheidegger 15 years ago
committed by Mihaela Rosca
parent
commit
118337d43a
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      javascript/i18n/phonenumbers/phonenumberutil.js

+ 2
- 0
javascript/i18n/phonenumbers/phonenumberutil.js View File

@ -2659,6 +2659,7 @@ i18n.phonenumbers.PhoneNumberDesc.prototype.exactlySameAs = function(other) {
/** /**
* @param {i18n.phonenumbers.PhoneNumber} other * @param {i18n.phonenumbers.PhoneNumber} other
* @return {i18n.phonenumbers.PhoneNumber} * @return {i18n.phonenumbers.PhoneNumber}
* @suppress {accessControls}
*/ */
i18n.phonenumbers.PhoneNumber.prototype.mergeFrom = function(other) { i18n.phonenumbers.PhoneNumber.prototype.mergeFrom = function(other) {
if (other) { if (other) {
@ -2670,6 +2671,7 @@ i18n.phonenumbers.PhoneNumber.prototype.mergeFrom = function(other) {
/** /**
* @param {i18n.phonenumbers.NumberFormat} other * @param {i18n.phonenumbers.NumberFormat} other
* @return {i18n.phonenumbers.NumberFormat} * @return {i18n.phonenumbers.NumberFormat}
* @suppress {accessControls}
*/ */
i18n.phonenumbers.NumberFormat.prototype.mergeFrom = function(other) { i18n.phonenumbers.NumberFormat.prototype.mergeFrom = function(other) {
if (other) { if (other) {


Loading…
Cancel
Save