Hi Scott,
if I remember correctly, the behavior you observe and would like to change is
actually not defined in StringBinding, but in the method asString(). You can
fix it by defining your own StringBinding. It is a one-liner, guess you are way
better off doing it yourself than waiting for suc
So I just discovered that:
ObjectProperty objectPropertyString = new
SimpleObjectProperty<>(null);
StringBinding stringBinding = objectPropertyString.asString();
stringBinding.get() == null --> FALSE
stringBinding.get().equals("null") --> TRUE
I care because this fails to do what I want:
Butt