aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-11-28 18:18:43 +0200
committerArtur Signell <artur@vaadin.com>2012-11-28 18:24:54 +0200
commitcbd900b1ea15d3fa059a38b30096f8cdd2f7590d (patch)
tree9c1c7e7ce9635cd2bd4cb62078fb059df3655040 /server
parent57e82eff5ba7409b3a36f0a03448ee6e3c755d97 (diff)
downloadvaadin-framework-cbd900b1ea15d3fa059a38b30096f8cdd2f7590d.tar.gz
vaadin-framework-cbd900b1ea15d3fa059a38b30096f8cdd2f7590d.zip
Fixed Table to actually use converter from factory (#10408)
Change-Id: I02dce8628def6ed926e79fff5762169a129f2426
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/ui/Table.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/ui/Table.java b/server/src/com/vaadin/ui/Table.java
index 91740673c4..1b72035e54 100644
--- a/server/src/com/vaadin/ui/Table.java
+++ b/server/src/com/vaadin/ui/Table.java
@@ -3725,8 +3725,8 @@ public class Table extends AbstractSelect implements Action.Container,
if (hasConverter(colId)) {
converter = getConverter(colId);
} else {
- ConverterUtil.getConverter(String.class, property.getType(),
- getSession());
+ converter = (Converter) ConverterUtil.getConverter(String.class,
+ property.getType(), getSession());
}
Object value = property.getValue();
if (converter != null) {