Replace C-style array declarations with Java-style declarations

int[] array;

instead of

  int array[];

Change-Id: I4fb02ac0bcdff75ec094ba61b36d40097a4e25b9
This commit is contained in:
David Pursehouse
2015-03-16 17:35:21 +09:00
parent ad5e634302
commit d70fc02a99
11 changed files with 12 additions and 12 deletions

View File

@@ -46,11 +46,11 @@ public final class GerritLauncher {
private static final String pkg = "com.google.gerrit.pgm";
public static final String NOT_ARCHIVED = "NOT_ARCHIVED";
public static void main(final String argv[]) throws Exception {
public static void main(final String[] argv) throws Exception {
System.exit(mainImpl(argv));
}
public static int mainImpl(final String argv[]) throws Exception {
public static int mainImpl(final String[] argv) throws Exception {
if (argv.length == 0) {
File me;
try {