Skip to content

Commit

Permalink
Use camel case
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 28, 2025
1 parent 2188eb0 commit 45f0202
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -412,12 +412,12 @@ public static String[][] HTML40_EXTENDED_UNESCAPE() {
* @return String[][] inverted array
*/
public static String[][] invert(final String[][] array) {
final String[][] newarray = new String[array.length][2];
final String[][] newArray = new String[array.length][2];
for (int i = 0; i < array.length; i++) {
newarray[i][0] = array[i][1];
newarray[i][1] = array[i][0];
newArray[i][0] = array[i][1];
newArray[i][1] = array[i][0];
}
return newarray;
return newArray;
}

/**
Expand Down

0 comments on commit 45f0202

Please sign in to comment.