diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-11-29 07:16:03 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-29 07:16:03 +0000 |
commit | f91209fef26400a0ee5acb095c9c134882622b4a (patch) | |
tree | cac38d814a8a5a236701bf37592ebe5496ddb8fc /server | |
parent | 8693cae9f026a2fb1d69cb525511773042a72162 (diff) | |
parent | cbd900b1ea15d3fa059a38b30096f8cdd2f7590d (diff) | |
download | vaadin-framework-f91209fef26400a0ee5acb095c9c134882622b4a.tar.gz vaadin-framework-f91209fef26400a0ee5acb095c9c134882622b4a.zip |
Merge "Fixed Table to actually use converter from factory (#10408)"
Diffstat (limited to 'server')
-rw-r--r-- | server/src/com/vaadin/ui/Table.java | 4 |
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) { |