summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorelmot <elmot@vaadin.com>2016-05-02 12:40:41 +0300
committerelmot <elmot@vaadin.com>2016-05-02 12:40:41 +0300
commit41e29dd2e32d8ca70bfcec25a1883f7965e53296 (patch)
treece744d719cf72166ac60d0acd90fe79d7f8e66ac /server
parent85870ccd9f93cebd839d22d2bd63ec817bb90a3d (diff)
downloadvaadin-framework-41e29dd2e32d8ca70bfcec25a1883f7965e53296.tar.gz
vaadin-framework-41e29dd2e32d8ca70bfcec25a1883f7965e53296.zip
Documentation fix for null representation (#13221)
Change-Id: Ib532fbd9efd587080a75155139ae1a7a219c1003
Diffstat (limited to 'server')
-rw-r--r--server/src/main/java/com/vaadin/ui/AbstractTextField.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/main/java/com/vaadin/ui/AbstractTextField.java b/server/src/main/java/com/vaadin/ui/AbstractTextField.java
index ce1d6f638d..0d16127e69 100644
--- a/server/src/main/java/com/vaadin/ui/AbstractTextField.java
+++ b/server/src/main/java/com/vaadin/ui/AbstractTextField.java
@@ -814,7 +814,7 @@ public abstract class AbstractTextField extends AbstractField<String> implements
}
/**
- * @since 7.6
+ * @since 7.7
* @return the default value used for nullRepresentation
*/
public static String getNullRepresentationDefault() {
@@ -824,7 +824,7 @@ public abstract class AbstractTextField extends AbstractField<String> implements
/**
* A static helper to define the default value used for nullRepresentation.
* <p>
- * In 7.6 the infamous default value "null" for
+ * In 7.7 the infamous default value "null" for
* AbstractTextField.nullRepresentation was changed to "", which may cause
* unexpected issues in certain applications that don't tackle null values.
* If there are several places in your application that depend on the old
@@ -834,7 +834,7 @@ public abstract class AbstractTextField extends AbstractField<String> implements
* "com.vaadin.nullrepresentationlegacymode" (before AbstractTextField class
* is loaded by your class loader).
*
- * @since 7.6
+ * @since 7.7
* @param nullRepresentationString
* the value that will be used as a default for
* {@link AbstractTextField#getNullRepresentation()} in new