Fix style warning (#1643)

THe build is giving a style warning over the extra parens.
This commit is contained in:
Michael Muller 2022-05-24 17:22:08 -04:00 committed by GitHub
parent eeca51667e
commit 1bf7c925bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -117,7 +117,7 @@ public class DomainPricingLogicTest {
new BillingEvent.Recurring.Builder()
.setParent(historyEntry)
.setRegistrarId(domain.getCreationRegistrarId())
.setEventTime((DateTime.parse("1999-01-05T00:00:00Z")))
.setEventTime(DateTime.parse("1999-01-05T00:00:00Z"))
.setFlags(ImmutableSet.of(AUTO_RENEW))
.setId(2L)
.setReason(Reason.RENEW)