diff options
author | Artur Signell <artur@vaadin.com> | 2015-01-19 15:03:11 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-04-09 11:41:38 +0000 |
commit | 8f02bfd384be1276b50b3ef2bfafec7a17523100 (patch) | |
tree | 08bff81b6c6ba011e832ccf1f925afa5b9190cf6 | |
parent | 8a50c558bcee3ede27ff5553785065e23c74748d (diff) | |
download | vaadin-framework-8f02bfd384be1276b50b3ef2bfafec7a17523100.tar.gz vaadin-framework-8f02bfd384be1276b50b3ef2bfafec7a17523100.zip |
Remove unusable code
Change-Id: I5bfa459695da3fe4d2cb271952b8c112b7052e97
-rw-r--r-- | server/src/com/vaadin/ui/Tree.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/server/src/com/vaadin/ui/Tree.java b/server/src/com/vaadin/ui/Tree.java index a86a9bd64b..3c5758c1ea 100644 --- a/server/src/com/vaadin/ui/Tree.java +++ b/server/src/com/vaadin/ui/Tree.java @@ -1301,19 +1301,6 @@ public class Tree extends AbstractSelect implements Container.Hierarchical, } } - /** - * Tree 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 Tree."); - } - } - private ItemStyleGenerator itemStyleGenerator; private DropHandler dropHandler; |