mirror of
https://github.com/google/nomulus
synced 2026-01-07 14:05:44 +00:00
Add explicit generic type parameters to make Java 7 build happy
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=139374166
This commit is contained in:
@@ -408,7 +408,7 @@ public final class DomainTransferRequestFlow implements TransactionalFlow {
|
||||
private ImmutableList<FeeTransformResponseExtension> createResponseExtensions(Money renewCost,
|
||||
FeeTransferCommandExtension feeTransfer) {
|
||||
return feeTransfer == null
|
||||
? ImmutableList.of()
|
||||
? ImmutableList.<FeeTransformResponseExtension>of()
|
||||
: ImmutableList.of(feeTransfer.createResponseBuilder()
|
||||
.setCurrency(renewCost.getCurrencyUnit())
|
||||
.setFees(ImmutableList.of(Fee.create(renewCost.getAmount(), FeeType.RENEW)))
|
||||
|
||||
Reference in New Issue
Block a user