Removed useless cast

This commit is contained in:
Cristian Maglie 2016-09-29 20:14:40 +02:00
parent 4d579f7652
commit 72a1d928b4
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ public class PApplet {
}
String[][] matches = new String[results.size()][count];
for (int i = 0; i < matches.length; i++) {
matches[i] = (String[]) results.get(i);
matches[i] = results.get(i);
}
return matches;
}