mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 17:07:15 +02:00
Mark nullable parameters as nullable
A few nullable parameters were not marked as nullable, which causes exceptions to be thrown in debug mode. This had no effect in the deployed web server, because these assert sanity checks aren't performed - but on our local test server this failed. Note that all these fields are checked for "nullness" in the code itself. It's just an oversight in the declaration. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=226187227
This commit is contained in:
parent
51f22a15ed
commit
1975218f45
2 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@
|
||||||
/** Registrar security settings page for view and edit. */
|
/** Registrar security settings page for view and edit. */
|
||||||
{template .settings}
|
{template .settings}
|
||||||
{@param ipAddressWhitelist: list<string>}
|
{@param ipAddressWhitelist: list<string>}
|
||||||
{@param phonePasscode: string}
|
{@param? phonePasscode: string}
|
||||||
{@param? clientCertificate: string}
|
{@param? clientCertificate: string}
|
||||||
{@param? clientCertificateHash: string}
|
{@param? clientCertificateHash: string}
|
||||||
{@param? failoverClientCertificate: string}
|
{@param? failoverClientCertificate: string}
|
||||||
|
|
|
@ -19,8 +19,8 @@
|
||||||
/** Registrar whois settings page for view and edit. */
|
/** Registrar whois settings page for view and edit. */
|
||||||
{template .settings}
|
{template .settings}
|
||||||
{@param clientIdentifier: string}
|
{@param clientIdentifier: string}
|
||||||
{@param ianaIdentifier: int}
|
{@param? ianaIdentifier: int}
|
||||||
{@param icannReferralEmail: string}
|
{@param? icannReferralEmail: string}
|
||||||
{@param readonly: bool}
|
{@param readonly: bool}
|
||||||
{@param? whoisServer: string}
|
{@param? whoisServer: string}
|
||||||
{@param? url: string}
|
{@param? url: string}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue