Add FX to ignorable imports

To get rid of missing library messages
This commit is contained in:
Jakub Valtar
2017-07-20 19:34:10 +02:00
parent 7dc3062db1
commit ab8daaed29

View File

@@ -520,6 +520,7 @@ public class JavaBuild {
protected boolean ignorableImport(String pkg) {
if (pkg.startsWith("java.")) return true;
if (pkg.startsWith("javax.")) return true;
if (pkg.startsWith("javafx.")) return true;
if (pkg.startsWith("processing.core.")) return true;
if (pkg.startsWith("processing.data.")) return true;