File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public static void main(String[] args) throws Exception {
4545 if (args .length < 1 ) { throw new IllegalArgumentException ("Not Enough Argunments specified\n " + validCmdMsg ); }
4646
4747 // Convert String arguments to char arrays
48- char [][] charArgs = Util .getCharArgunments (args );
48+ char [][] charArgs = Util .getCharArguments (args );
4949
5050 // Clear String argunments
5151 Arrays .fill (args , null );
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public static byte[] convertCharToByte(char[] chars) {
4141 * @param args String[] An array of strings
4242 * @return char[][] A 2-Dimensional character array
4343 */
44- public static final char [][] getCharArgunments (String [] args ) {
44+ public static final char [][] getCharArguments (String [] args ) {
4545 char [][] charArgs = new char [args .length ][];
4646 for (int i = 0 ; i < args .length ; i ++) {
4747 charArgs [i ] = args [i ].toCharArray ();
You can’t perform that action at this time.
0 commit comments