From 9653de26ba787e942c11a5b8b6389576455c2bbc Mon Sep 17 00:00:00 2001 From: Joni <45562391+ujoni@users.noreply.github.com> Date: Fri, 4 Oct 2019 08:55:01 +0300 Subject: [PATCH] Correct Javadoc lines (#6613) --- .../main/java/com/vaadin/flow/data/converter/Converter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flow-data/src/main/java/com/vaadin/flow/data/converter/Converter.java b/flow-data/src/main/java/com/vaadin/flow/data/converter/Converter.java index 9ced96e3eaa..cfe29a202ce 100644 --- a/flow-data/src/main/java/com/vaadin/flow/data/converter/Converter.java +++ b/flow-data/src/main/java/com/vaadin/flow/data/converter/Converter.java @@ -40,7 +40,7 @@ public interface Converter extends Serializable { /** - * Converts the given value from model type to presentation type. + * Converts the given value from presentation type to model type. *

* A converter can optionally use locale to do the conversion. * @@ -53,7 +53,7 @@ public interface Converter extends Serializable { Result convertToModel(PRESENTATION value, ValueContext context); /** - * Converts the given value from presentation type to model type. + * Converts the given value from model type to presentation type. *

* A converter can optionally use locale to do the conversion. *