diff options
author | Henri Sara <hesara@vaadin.com> | 2016-07-29 15:26:27 +0300 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2016-07-29 15:26:27 +0300 |
commit | 76a702c1c063a1e9f1bc515e13bc496bda9f96a9 (patch) | |
tree | 6d66803036fe7bfdfb20cf1f3364ee7f8861e32e | |
parent | 020fe73bfd861bb8713bfe6e012c483a74dc4074 (diff) | |
download | vaadin-framework-feature/eventbus.tar.gz vaadin-framework-feature/eventbus.zip |
Remove unused field in ComboBoxfeature/eventbus
Change-Id: I611767b23f55cc9f497e04dee2bf447e72155aca
-rw-r--r-- | server/src/main/java/com/vaadin/ui/ComboBox.java | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/server/src/main/java/com/vaadin/ui/ComboBox.java b/server/src/main/java/com/vaadin/ui/ComboBox.java index 274faa505f..bb3010175f 100644 --- a/server/src/main/java/com/vaadin/ui/ComboBox.java +++ b/server/src/main/java/com/vaadin/ui/ComboBox.java @@ -162,13 +162,6 @@ public class ComboBox extends AbstractSelect implements */ private boolean scrollToSelectedItem = true; - /** - * If text input is not allowed, the ComboBox behaves like a pretty - * NativeSelect - the user can not enter any text and clicking the text - * field opens the drop down with options - */ - private boolean textInputAllowed = true; - private ItemStyleGenerator itemStyleGenerator = null; public ComboBox() { |