1
0
mirror of https://github.com/google/nomulus synced 2026-01-09 07:33:42 +00:00

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
This commit is contained in:
nickfelt
2017-03-23 11:21:06 -07:00
committed by Ben McIlwain
parent aa35d74900
commit 2b2a00216f

View File

@@ -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;