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

@@ -114,7 +114,7 @@ public class KeyHelpPopup extends PluginSafePopupPanel implements
}
private void populate(final Grid lists) {
int end[] = new int[5];
int[] end = new int[5];
int column = 0;
for (final KeyCommandSet set : combinedSetsByName()) {
int row = end[column];