mirror of
https://github.com/google/nomulus
synced 2026-01-08 23:23:32 +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:
@@ -217,7 +217,7 @@ public final class DomainRenewFlow implements TransactionalFlow {
|
||||
private ImmutableList<FeeTransformResponseExtension> createResponseExtensions(
|
||||
Money renewCost, FeeRenewCommandExtension feeRenew) {
|
||||
return (feeRenew == null)
|
||||
? ImmutableList.of()
|
||||
? ImmutableList.<FeeTransformResponseExtension>of()
|
||||
: ImmutableList.of(feeRenew.createResponseBuilder()
|
||||
.setCurrency(renewCost.getCurrencyUnit())
|
||||
.setFees(ImmutableList.of(Fee.create(renewCost.getAmount(), FeeType.RENEW)))
|
||||
|
||||
Reference in New Issue
Block a user