aboutsummaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2016-07-29 12:38:10 +0300
committerArtur Signell <artur@vaadin.com>2016-08-08 11:37:07 +0000
commitd4c2a27a78877a4e3666a844afaeeeca0d9b8477 (patch)
tree1e84155eebade7990742c3e72de640fdd145e8f4 /server/src
parent1c3c537d9a783d90f41a4adba40cd1f5b56b8c67 (diff)
downloadvaadin-framework-d4c2a27a78877a4e3666a844afaeeeca0d9b8477.tar.gz
vaadin-framework-d4c2a27a78877a4e3666a844afaeeeca0d9b8477.zip
Remove obsolete paint attribute from ComboBox
This was already in the shared state. Change-Id: I42f43be136199e6cad259742ee8d7e78c65cf94f
Diffstat (limited to 'server/src')
-rw-r--r--server/src/main/java/com/vaadin/ui/ComboBox.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/server/src/main/java/com/vaadin/ui/ComboBox.java b/server/src/main/java/com/vaadin/ui/ComboBox.java
index bba261a110..364b7a3d07 100644
--- a/server/src/main/java/com/vaadin/ui/ComboBox.java
+++ b/server/src/main/java/com/vaadin/ui/ComboBox.java
@@ -262,12 +262,6 @@ public class ComboBox extends AbstractSelect implements
// clear caption change listeners
getCaptionChangeListener().clear();
- // If the field is modified, but not committed, set modified
- // attribute
- if (isModified()) {
- target.addAttribute("modified", true);
- }
-
if (isNewItemsAllowed()) {
target.addAttribute("allownewitem", true);
}