We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 02b0e51 + 553f896 commit 656cdafCopy full SHA for 656cdaf
src/js/ComplexProperties/EmailAddressDictionary.ts
@@ -75,7 +75,7 @@ export class EmailAddressDictionary extends DictionaryProperty<EmailAddressKey,
75
* @return {boolean} true if the Dictionary contains an e-mail address associated with the specified key; otherwise, false.
76
*/
77
TryGetValue(key: EmailAddressKey, emailAddress: IOutParam<EmailAddress>): boolean {
78
- let entry: IOutParam<EmailAddressEntry> = null;
+ let entry: IOutParam<EmailAddressEntry> = { outValue: null };
79
80
if (this.Entries.tryGetValue(key, entry)) {
81
emailAddress.outValue = entry.outValue.EmailAddress;
0 commit comments