Allow support for static imports through pdex's ImportStatement.

Discontinued use of string import statement generation and migrated to pdex's ImportStatement class which can keep track of if the import is static or not. This allows static imports to be handled correctly in PDEX, JavaBuild library resoluation, and actual Java compilation step. Resolves https://github.com/processing/processing/issues/5577 and https://github.com/processing/processing4/issues/16 but only in the Processing4 branch.
This commit is contained in:
Sam Pottinger
2019-11-04 16:54:22 -08:00
parent 9d9c7cc043
commit c458863dd7
9 changed files with 126 additions and 88 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import processing.data.*;
import processing.event.*;
import processing.opengl.*;
import java.lang.Math.tanh;
import static java.lang.Math.tanh;
import java.util.concurrent.Callable;
import java.util.List;
import java.util.Comparator;