mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-20 14:54:31 +01:00
Removed useless cast
This commit is contained in:
parent
4d579f7652
commit
72a1d928b4
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user