Skip to content

Commit a80516b

Browse files
authored
Update RandomLetterChooser.java
1 parent 1b9f22a commit a80516b

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/main/java/RandomLetterChooser.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,4 @@ public RandomLetterChooser(String str){
66
super(getSingleLetters(str));
77
}
88

9-
}
10-
11-
12-
public static String[] getSingleLetters(String str)
13-
{
14-
String[] letterArray = new String[str.length()];
15-
for(int i=0; i<str.length(); i++)
16-
{
17-
letterArray[i] = ""+str.charAt(i);
18-
}
19-
return letterArray;
20-
}
219
}

0 commit comments

Comments
 (0)