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