mirror of
https://github.com/google/nomulus.git
synced 2025-05-14 08:27:14 +02:00
Qualify the usage of ImmutableSet.of()
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=167718824
This commit is contained in:
parent
c3861f6e95
commit
3687cc5138
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ public final class DomainTransferApproveFlow implements TransactionalFlow {
|
||||||
(billingEvent.isPresent())
|
(billingEvent.isPresent())
|
||||||
? ImmutableSet.of(
|
? ImmutableSet.of(
|
||||||
GracePeriod.forBillingEvent(GracePeriodStatus.TRANSFER, billingEvent.get()))
|
GracePeriod.forBillingEvent(GracePeriodStatus.TRANSFER, billingEvent.get()))
|
||||||
: ImmutableSet.of())
|
: ImmutableSet.<GracePeriod>of())
|
||||||
.build();
|
.build();
|
||||||
// Create a poll message for the gaining client.
|
// Create a poll message for the gaining client.
|
||||||
PollMessage gainingClientPollMessage = createGainingTransferPollMessage(
|
PollMessage gainingClientPollMessage = createGainingTransferPollMessage(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue