Fix some style issues that will help us out later

These files will have errors later when we run the Google Java Format plugin over their entirety (e.g. a situation where fixed indentation leads to a line that's longer than 100 characters). It's simpler to fix them now so we won't have to fix them later.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=232353791
This commit is contained in:
gbrodman 2019-02-04 13:17:35 -08:00 committed by jianglai
parent a325f0a50b
commit 058ef07e16
5 changed files with 28 additions and 27 deletions

View file

@ -307,8 +307,9 @@ abstract class CreateOrUpdateTldCommand extends MutatingCommand {
if (renewBillingCostTransitions.size() > 1) {
System.err.println(
"----------------------\n"
+ "WARNING: Do not set multiple renew cost transitions until b/20764952 is fixed.\n"
+ "----------------------\n");
+ "WARNING: Do not set multiple renew cost transitions "
+ "until b/20764952 is fixed.\n"
+ "----------------------\n");
}
builder.setRenewBillingCostTransitions(renewBillingCostTransitions);
}