| Other |
|---|
| openjfx17Fixed |
|
Relates :
|
|
|
Relates :
|
The Class.newInstance() method is deprecated in favor of Contructor.newinstance(). According to the API docs for the former:
clazz.newInstance()
can be replaced by
clazz.getDeclaredConstructor().newInstance()
There are 12 calls to newInstance in JavaFX, 9 in javafx.graphics and 3 in javafx.fxml
|