Bug 1050665 - Make returnMessage and returnNumber nullable. r=ehsan, r=smaug to make the commit hook happy

--HG--
extra : amend_source : 089934856605faebd8406c58d3fac94ced73fe46
This commit is contained in:
Olli Pettay 2014-08-11 07:52:00 -04:00
parent d4dc5b4109
commit c36e247bb2

View File

@ -37,11 +37,11 @@ interface MozVoicemailStatus
* Return call number received for this voicemail status, or null if one
* wasn't provided.
*/
readonly attribute DOMString returnNumber;
readonly attribute DOMString? returnNumber;
/**
* Displayable return call message received for this voicemail status, or null
* if one wasn't provided.
*/
readonly attribute DOMString returnMessage;
readonly attribute DOMString? returnMessage;
};