From 40df8ab2c0958a26e8c64d65755565d61224ce27 Mon Sep 17 00:00:00 2001 From: Michael Muller Date: Tue, 24 May 2022 17:22:08 -0400 Subject: [PATCH] Fix style warning (#1643) THe build is giving a style warning over the extra parens. --- .../google/registry/flows/domain/DomainPricingLogicTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/java/google/registry/flows/domain/DomainPricingLogicTest.java b/core/src/test/java/google/registry/flows/domain/DomainPricingLogicTest.java index 1c9bfe275..3f51ae4da 100644 --- a/core/src/test/java/google/registry/flows/domain/DomainPricingLogicTest.java +++ b/core/src/test/java/google/registry/flows/domain/DomainPricingLogicTest.java @@ -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)