mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 22:29:18 +01:00
deal with some cast warnings, looking into class loading issues with modes
This commit is contained in:
@@ -781,7 +781,7 @@ public class PdePreprocessor {
|
||||
}
|
||||
|
||||
protected int writeImportList(PrintWriter out, List<String> imports) {
|
||||
return writeImportList(out, (String[]) imports.toArray(new String[0]));
|
||||
return writeImportList(out, imports.toArray(new String[0]));
|
||||
}
|
||||
|
||||
protected int writeImportList(PrintWriter out, String[] imports) {
|
||||
|
||||
Reference in New Issue
Block a user