< prev index next >

modules/graphics/src/test/java/test/javafx/animation/SequentialTransitionPlayTest.java

Print this page

        

@@ -97,12 +97,12 @@
             protected void interpolate(double frac) {
                 xProperty.set(Math.round(lastX + frac * 1000));
             }
 
             @Override
-            public void impl_sync(boolean forceSync) {
-                super.impl_sync(forceSync);
+            public void sync(boolean forceSync) {
+                super.sync(forceSync);
                 if (forceSync) {
                     lastX = xProperty.get();
                 }
             }
 
< prev index next >