Skip to content

Commit 98b8ab9

Browse files
committed
Add FX to ignorable imports
To get rid of missing library messages
1 parent cdf88e6 commit 98b8ab9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

java/src/processing/mode/java/JavaBuild.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,7 @@ public String preprocess(File srcFolder,
520520
protected boolean ignorableImport(String pkg) {
521521
if (pkg.startsWith("java.")) return true;
522522
if (pkg.startsWith("javax.")) return true;
523+
if (pkg.startsWith("javafx.")) return true;
523524

524525
if (pkg.startsWith("processing.core.")) return true;
525526
if (pkg.startsWith("processing.data.")) return true;

0 commit comments

Comments
 (0)