From 79059ef21bc50fda050275af978e6e066ae47071 Mon Sep 17 00:00:00 2001 From: Tatu Lund Date: Thu, 28 Oct 2021 08:26:05 +0300 Subject: [PATCH] Remove obsolete comment and assert in Binder (#12456) --- server/src/main/java/com/vaadin/data/Binder.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/server/src/main/java/com/vaadin/data/Binder.java b/server/src/main/java/com/vaadin/data/Binder.java index 6a4afdb2f6..01794c7b3d 100644 --- a/server/src/main/java/com/vaadin/data/Binder.java +++ b/server/src/main/java/com/vaadin/data/Binder.java @@ -1239,8 +1239,7 @@ public class Binder implements Serializable { /** * Sets the field value by invoking the getter function on the given - * bean. The default listener attached to the field will be removed for - * the duration of this update. + * bean. * * @param bean * the bean to fetch the property value from @@ -1252,7 +1251,6 @@ public class Binder implements Serializable { */ private void initFieldValue(BEAN bean, boolean writeBackChangedValues) { assert bean != null; - assert onValueChange != null; valueInit = true; try { TARGET originalValue = getter.apply(bean); -- 2.39.5