Type-inference fails when binding ReactFx Var.mapBidirectional to JavaFx property
问题 I am trying to bind a TextField.textProperty() to a ObjectProperty<LocalDateTime> in a custom control. The following code ompiles and runs in Eclipse: package main.java import java.time.LocalDateTime; import org.reactfx.value.Var; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleStringProperty; public class Playbook { public void bindTimeString(final ObjectProperty<LocalDateTime> timepoint, final SimpleStringProperty textProperty) { Var.mapBidirectional