From d4c2a27a78877a4e3666a844afaeeeca0d9b8477 Mon Sep 17 00:00:00 2001 From: Henri Sara Date: Fri, 29 Jul 2016 12:38:10 +0300 Subject: [PATCH] Remove obsolete paint attribute from ComboBox This was already in the shared state. Change-Id: I42f43be136199e6cad259742ee8d7e78c65cf94f --- server/src/main/java/com/vaadin/ui/ComboBox.java | 6 ------ 1 file changed, 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); } -- 2.39.5