Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+14 votes

I keep getting this warning:

WARNING: Loading FXML document with JavaFX API of version 20.0.1 by JavaFX runtime of version 20

Do I need to do anything about it?

asked in CSC305 Fall 2023 by (1 point)

1 Answer

+4 votes

TLDR; "Don't worry about it!"

I think the version of SceneBuilder that you downloaded is a tiny bit newer than the version of the JavaFX libraries that we are downloading using Maven.

This (very small) difference in versions between the declared version of the FXML file and the actual version of JavaFX that we are using is very unlikely to pose any problems.

answered by (508 points)
...