Fix modifier order

Change-Id: I033efd9504b4deebf852f7f079a937d93285b7aa
This commit is contained in:
David Pursehouse 2015-08-25 15:25:00 +09:00
parent baf9043a7e
commit 46424a9853
3 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@ import com.google.gwt.i18n.client.DateTimeFormat;
import java.util.Date;
public class DateFormatter {
private final static long ONE_YEAR = 182L * 24 * 60 * 60 * 1000;
private static final long ONE_YEAR = 182L * 24 * 60 * 60 * 1000;
private final DateTimeFormat sTime;
private final DateTimeFormat sDate;

View File

@ -22,7 +22,7 @@ import com.google.gerrit.client.info.AccountInfo;
import java.util.Date;
public class FormatUtil {
private final static AccountFormatter accountFormatter =
private static final AccountFormatter accountFormatter =
new AccountFormatter(Plugin.get().getServerInfo().user()
.anonymousCowardName());

View File

@ -47,9 +47,9 @@ import java.util.Map;
import java.util.concurrent.TimeUnit;
public class GetServerInfo implements RestReadView<ConfigResource> {
private final static String URL_ALIAS = "urlAlias";
private final static String KEY_MATCH = "match";
private final static String KEY_TOKEN = "token";
private static final String URL_ALIAS = "urlAlias";
private static final String KEY_MATCH = "match";
private static final String KEY_TOKEN = "token";
private final Config config;
private final AuthConfig authConfig;