From 7c007b1ea84b3e671fd974c615de4e5e5b59ebc3 Mon Sep 17 00:00:00 2001 From: Leif Åstrand Date: Wed, 30 May 2012 09:37:44 +0300 Subject: Remove Table.setLazyLoading (#6010) --- src/com/vaadin/ui/Table.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index ba4c6529c5..299eace16d 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -4359,19 +4359,6 @@ public class Table extends AbstractSelect implements Action.Container, } } - /** - * Table does not support lazy options loading mode. Setting this true will - * throw UnsupportedOperationException. - * - * @see com.vaadin.ui.Select#setLazyLoading(boolean) - */ - public void setLazyLoading(boolean useLazyLoading) { - if (useLazyLoading) { - throw new UnsupportedOperationException( - "Lazy options loading is not supported by Table."); - } - } - /** * Used to create "generated columns"; columns that exist only in the Table, * not in the underlying Container. Implement this interface and pass it to -- cgit v1.2.3