Replace C-style array declarations with Java-style declarations
int[] array; instead of int array[]; Change-Id: I4fb02ac0bcdff75ec094ba61b36d40097a4e25b9
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user