]> source.dussan.org Git - vaadin-framework.git/commitdiff
Remove obsolete code (#19929)
authorHenri Sara <hesara@vaadin.com>
Tue, 10 Nov 2015 08:31:12 +0000 (10:31 +0200)
committerHenri Sara <hesara@vaadin.com>
Tue, 10 Nov 2015 08:31:12 +0000 (10:31 +0200)
A previous change left a few obsolete lines related to
pageLength in ComboBoxConnector.updateFromUIDL().
Those are removed here.

Change-Id: I4c2d151afbb1acf604e4c24ed320b12ce5632b1f

client/src/com/vaadin/client/ui/combobox/ComboBoxConnector.java

index 303bb7a8eafc4bdace6f09e1febb7ac9c9fc9560..ad1e77c167c7de6978b539e4c94fc79bcdcc1d3e 100644 (file)
@@ -108,10 +108,6 @@ public class ComboBoxConnector extends AbstractFieldConnector implements
 
         getWidget().currentPage = uidl.getIntVariable("page");
 
-        if (uidl.hasAttribute("pagelength")) {
-            getWidget().pageLength = uidl.getIntAttribute("pagelength");
-        }
-
         getWidget().suggestionPopup.updateStyleNames(getState());
 
         getWidget().allowNewItem = uidl.hasAttribute("allownewitem");