diff options
author | Artur Signell <artur@vaadin.com> | 2016-08-10 10:02:21 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2016-08-10 16:09:24 +0300 |
commit | 192e93a814f05dc8c5cc7a01b7264bc0a8a9dec7 (patch) | |
tree | 784646d65183b23577e7f8b462f0a23ff9c1502f /server/src/main/java/com/vaadin/ui/declarative/DesignAttributeHandler.java | |
parent | 314eb377ddc3112fbcd0b55f214ab6f0b7c606a9 (diff) | |
download | vaadin-framework-192e93a814f05dc8c5cc7a01b7264bc0a8a9dec7.tar.gz vaadin-framework-192e93a814f05dc8c5cc7a01b7264bc0a8a9dec7.zip |
Move and rename converters into com.vaadin.legacy.data.util.converter.Legacy*
Change-Id: I75fd33e66c8c5c265bc60cce58ff639a5d5642ab
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/declarative/DesignAttributeHandler.java')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/declarative/DesignAttributeHandler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/main/java/com/vaadin/ui/declarative/DesignAttributeHandler.java b/server/src/main/java/com/vaadin/ui/declarative/DesignAttributeHandler.java index bbfd90b2cc..35cbf755d4 100644 --- a/server/src/main/java/com/vaadin/ui/declarative/DesignAttributeHandler.java +++ b/server/src/main/java/com/vaadin/ui/declarative/DesignAttributeHandler.java @@ -36,7 +36,7 @@ import org.jsoup.nodes.Attributes; import org.jsoup.nodes.Element; import org.jsoup.nodes.Node; -import com.vaadin.data.util.converter.Converter; +import com.vaadin.legacy.data.util.converter.LegacyConverter; import com.vaadin.shared.ui.AlignmentInfo; import com.vaadin.shared.util.SharedUtil; import com.vaadin.ui.Alignment; @@ -381,7 +381,7 @@ public class DesignAttributeHandler implements Serializable { // value is not null. How to represent null value in attributes? return ""; } - Converter<String, Object> converter = getFormatter().findConverterFor( + LegacyConverter<String, Object> converter = getFormatter().findConverterFor( sourceType); if (converter != null) { return converter.convertToPresentation(value, String.class, null); |