diff options
author | Anna Koskinen <Ansku@users.noreply.github.com> | 2021-10-29 17:43:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-29 17:43:44 +0300 |
commit | 6bb9177e697fcf1dabea54b523b8f2d7d5a1691c (patch) | |
tree | aa9b7f210ba2f8df79fc0b3acd020f02b7948f52 | |
parent | 6772825b88752baf40fe9ba89720517b4e012ff9 (diff) | |
download | vaadin-framework-8.14.2.tar.gz vaadin-framework-8.14.2.zip |
Remove obsolete comment and assert in Binder (#12456) (#12465)8.14.2
Authored-by: Tatu Lund <tatu@vaadin.com>
-rw-r--r-- | server/src/main/java/com/vaadin/data/Binder.java | 4 |
1 files changed, 1 insertions, 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<BEAN> 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<BEAN> implements Serializable { */ private void initFieldValue(BEAN bean, boolean writeBackChangedValues) { assert bean != null; - assert onValueChange != null; valueInit = true; try { TARGET originalValue = getter.apply(bean); |