--- old/modules/controls/src/main/java/com/sun/javafx/scene/control/behavior/FocusTraversalInputMap.java 2016-06-03 11:03:59.949423634 -0700 +++ new/modules/controls/src/main/java/com/sun/javafx/scene/control/behavior/FocusTraversalInputMap.java 2016-06-03 11:03:59.813423635 -0700 @@ -24,6 +24,7 @@ */ package com.sun.javafx.scene.control.behavior; +import com.sun.javafx.scene.NodeHelper; import com.sun.javafx.scene.traversal.Direction; import javafx.event.EventTarget; import javafx.scene.Node; @@ -83,10 +84,10 @@ /** * Called by any of the BehaviorBase traverse methods to actually effect a * traversal of the focus. The default behavior of this method is to simply - * call impl_traverse on the given node, passing the given direction. A + * call NodeHelper.traverse on the given node, passing the given direction. A * subclass may override this method. * - * @param node The node to call impl_traverse on + * @param node The node to call NodeHelper.traverse on * @param dir The direction to traverse */ public static void traverse(final Node node, final Direction dir) { @@ -94,7 +95,7 @@ throw new IllegalArgumentException("Attempting to traverse on a null Node. " + "Most probably a KeyEvent has been fired with a null target specified."); } - node.impl_traverse(dir); + NodeHelper.traverse(node, dir); } /**