Skip to content

Commit 72a1d92

Browse files
committed
Removed useless cast
1 parent 4d579f7 commit 72a1d92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-core/src/processing/app/legacy/PApplet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ static public String[][] matchAll(String what, String regexp) {
480480
}
481481
String[][] matches = new String[results.size()][count];
482482
for (int i = 0; i < matches.length; i++) {
483-
matches[i] = (String[]) results.get(i);
483+
matches[i] = results.get(i);
484484
}
485485
return matches;
486486
}

0 commit comments

Comments
 (0)