diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-07-12 15:59:03 +0300 |
---|---|---|
committer | Ilia Motornyi <elmot@vaadin.com> | 2017-07-12 15:59:03 +0300 |
commit | a454893e89d51041fa7735496d4d28341d7ae5ec (patch) | |
tree | 2e9c9413e329a0fe2afd58acb41e01e2ac7aef70 | |
parent | a7b2de20d60ea157501d21d8e5179126571e7c36 (diff) | |
download | vaadin-framework-a454893e89d51041fa7735496d4d28341d7ae5ec.tar.gz vaadin-framework-a454893e89d51041fa7735496d4d28341d7ae5ec.zip |
Add missing since for 8.0.7
-rw-r--r-- | client/src/main/java/com/vaadin/client/ui/VComboBox.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/client/src/main/java/com/vaadin/client/ui/VComboBox.java b/client/src/main/java/com/vaadin/client/ui/VComboBox.java index a68eaa961a..45e69cee01 100644 --- a/client/src/main/java/com/vaadin/client/ui/VComboBox.java +++ b/client/src/main/java/com/vaadin/client/ui/VComboBox.java @@ -2825,9 +2825,9 @@ public class VComboBox extends Composite implements Field, KeyDownHandler, /** * Gets the empty selection caption. - * + * + * @since 8.0.7 * @return the empty selection caption - * @since 8.1 */ public String getEmptySelectionCaption() { return emptySelectionCaption; @@ -2839,7 +2839,8 @@ public class VComboBox extends Composite implements Field, KeyDownHandler, * * @param emptySelectionCaption * the empty selection caption - * @since 8.1 + * + * @since 8.0.7 */ public void setEmptySelectionCaption(String emptySelectionCaption) { this.emptySelectionCaption = emptySelectionCaption; |