--- old/functional/ControlsTests/src/javafx/scene/control/test/utils/ptables/StringPropertyValueSetter.java 2017-02-10 15:01:42.381238579 +0300 +++ new/functional/ControlsTests/src/javafx/scene/control/test/utils/ptables/StringPropertyValueSetter.java 2017-02-10 15:01:42.329237987 +0300 @@ -27,7 +27,6 @@ import javafx.beans.property.Property; import javafx.scene.Node; import javafx.scene.control.TextField; -import javafx.scene.control.TextFieldBuilder; import static javafx.scene.control.test.utils.ptables.StaticLogger.*; /** @@ -39,7 +38,8 @@ public StringPropertyValueSetter(Property listeningProperty, BindingType btype, Object testedControl, String initialString) { try { - final TextField tf = TextFieldBuilder.create().text(initialString).id(createId(listeningProperty, btype)).build(); + final TextField tf = new TextField(initialString); + tf.setId(createId(listeningProperty, btype)); this.leadingControl = tf; this.leadingProperty = (Property) tf.textProperty(); this.listeningProperty = listeningProperty;