mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 10:55:38 +01:00
ImportStatement is now immutable
This commit is contained in:
@@ -128,7 +128,7 @@ public class XQPreprocessor {
|
||||
public String prepareImports() {
|
||||
imports = new ArrayList<String>();
|
||||
for (int i = 0; i < extraImports.size(); i++) {
|
||||
imports.add(new String(extraImports.get(i).importName));
|
||||
imports.add(new String(extraImports.get(i).getImportName()));
|
||||
}
|
||||
imports.add(new String("// Default Imports"));
|
||||
for (int i = 0; i < coreImports.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user