From: Artur Signell
Date: Wed, 22 May 2013 13:36:33 +0000 (+0300)
Subject: Fixed order of parameters in javadoc (#11158)
X-Git-Tag: 7.1.0~90^2~53
X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0b635061bb9b30e9f28d49fe9606eb3cab2fd3f1;p=vaadin-framework.git
Fixed order of parameters in javadoc (#11158)
Change-Id: I523140051e1034b5fab501517e70209f29b6b869
---
diff --git a/server/src/com/vaadin/data/util/converter/Converter.java b/server/src/com/vaadin/data/util/converter/Converter.java
index be9bb32413..ded7da7fb5 100644
--- a/server/src/com/vaadin/data/util/converter/Converter.java
+++ b/server/src/com/vaadin/data/util/converter/Converter.java
@@ -38,12 +38,12 @@ import java.util.Locale;
* If conversion of a value fails, a {@link ConversionException} is thrown.
*
*
- * @param
- * The model type. Must be compatible with what
- * {@link #getModelType()} returns.
* @param
* The presentation type. Must be compatible with what
* {@link #getPresentationType()} returns.
+ * @param
+ * The model type. Must be compatible with what
+ * {@link #getModelType()} returns.
* @author Vaadin Ltd.
* @since 7.0
*/