int dotPos = property.indexOf(".");
if (dotPos > 0) {
String bindableProperty = property.substring(0, dotPos);
DataBinder binder = binders.get(bindableProperty);
if (binder != null) {
binder.unbind(property.substring(dotPos + 1));
}
}
bindings.remove(property);
converters.remove(property);