aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-11-29 07:16:03 +0000
committerVaadin Code Review <review@vaadin.com>2012-11-29 07:16:03 +0000
commitf91209fef26400a0ee5acb095c9c134882622b4a (patch)
treecac38d814a8a5a236701bf37592ebe5496ddb8fc /server
parent8693cae9f026a2fb1d69cb525511773042a72162 (diff)
parentcbd900b1ea15d3fa059a38b30096f8cdd2f7590d (diff)
downloadvaadin-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.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) {