diff options
Diffstat (limited to 'server/src/com/vaadin/data/util/TransactionalPropertyWrapper.java')
-rw-r--r-- | server/src/com/vaadin/data/util/TransactionalPropertyWrapper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/data/util/TransactionalPropertyWrapper.java b/server/src/com/vaadin/data/util/TransactionalPropertyWrapper.java index c03a4ce959..d8d27ae4c8 100644 --- a/server/src/com/vaadin/data/util/TransactionalPropertyWrapper.java +++ b/server/src/com/vaadin/data/util/TransactionalPropertyWrapper.java @@ -74,7 +74,7 @@ public class TransactionalPropertyWrapper<T> extends AbstractProperty<T> } @Override - public void setValue(Object newValue) throws ReadOnlyException { + public void setValue(T newValue) throws ReadOnlyException { // Causes a value change to be sent to this listener which in turn fires // a new value change event for this property wrappedProperty.setValue(newValue); |