--- old/modules/javafx.base/src/main/java/javafx/beans/value/ObservableValue.java 2018-07-31 08:50:17.256853100 +0300 +++ new/modules/javafx.base/src/main/java/javafx/beans/value/ObservableValue.java 2018-07-31 08:50:16.991795100 +0300 @@ -44,8 +44,8 @@ *

* An {@code ObservableValue} generates two types of events: change events and * invalidation events. A change event indicates that the value has changed. An - * invalidation event is generated, if the current value is not valid anymore. - * This distinction becomes important, if the {@code ObservableValue} supports + * invalidation event is generated if the current value is not valid anymore. + * This distinction becomes important if the {@code ObservableValue} supports * lazy evaluation, because for a lazily evaluated value one does not know if an * invalid value really has changed until it is recomputed. For this reason, * generating change events requires eager evaluation while invalidation events @@ -108,7 +108,7 @@ void addListener(ChangeListener listener); /** - * Removes the given listener from the list of listeners, that are notified + * Removes the given listener from the list of listeners that are notified * whenever the value of the {@code ObservableValue} changes. *

* If the given listener has not been previously registered (i.e. it was