From 2b2a00216ff3e7476fa6c07b3930b81b957fba39 Mon Sep 17 00:00:00 2001 From: nickfelt Date: Thu, 23 Mar 2017 11:21:06 -0700 Subject: [PATCH] Remove unnecessary semicolon after one-line constructor It's causing a warning in Eclipse. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=151029304 --- java/google/registry/model/registrar/Registrar.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/google/registry/model/registrar/Registrar.java b/java/google/registry/model/registrar/Registrar.java index c38d27950..46aee314b 100644 --- a/java/google/registry/model/registrar/Registrar.java +++ b/java/google/registry/model/registrar/Registrar.java @@ -316,7 +316,7 @@ public class Registrar extends ImmutableObject implements Buildable, Jsonifiable CurrencyUnit currency; String accountId; - BillingAccountEntry() {}; + BillingAccountEntry() {} BillingAccountEntry(CurrencyUnit currency, String accountId) { this.accountId = accountId;