diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-05-30 09:37:44 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-05-30 09:37:44 +0300 |
commit | 7c007b1ea84b3e671fd974c615de4e5e5b59ebc3 (patch) | |
tree | a9456fdcb635bb05648529b04a2812264a20e3ec | |
parent | c4e3055fce1519471869784b55d06ada8870ac31 (diff) | |
download | vaadin-framework-7c007b1ea84b3e671fd974c615de4e5e5b59ebc3.tar.gz vaadin-framework-7c007b1ea84b3e671fd974c615de4e5e5b59ebc3.zip |
Remove Table.setLazyLoading (#6010)
-rw-r--r-- | src/com/vaadin/ui/Table.java | 13 |
1 files changed, 0 insertions, 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 @@ -4360,19 +4360,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 * Table.addGeneratedColumn along with an id for the column to be generated. |