diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-05-25 16:09:54 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-06-06 09:32:52 +0300 |
commit | f7da26697a01cfda4334557fe94579abffee09bb (patch) | |
tree | ef4d19dfe67e9477e8a2b49f96db3cc2a96efe61 /src/com/vaadin/ui/Table.java | |
parent | 564f67f77b535f490fb7c7783d89bf83a55c8cab (diff) | |
download | vaadin-framework-f7da26697a01cfda4334557fe94579abffee09bb.tar.gz vaadin-framework-f7da26697a01cfda4334557fe94579abffee09bb.zip |
Initial extension support (#6690)
Diffstat (limited to 'src/com/vaadin/ui/Table.java')
-rw-r--r-- | src/com/vaadin/ui/Table.java | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index 299eace16d..e41c3d2a42 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -3705,13 +3705,6 @@ public class Table extends AbstractSelect implements Action.Container, super.attach(); refreshRenderedCells(); - - if (visibleComponents != null) { - for (final Iterator<Component> i = visibleComponents.iterator(); i - .hasNext();) { - i.next().attach(); - } - } } /** @@ -3722,13 +3715,6 @@ public class Table extends AbstractSelect implements Action.Container, @Override public void detach() { super.detach(); - - if (visibleComponents != null) { - for (final Iterator<Component> i = visibleComponents.iterator(); i - .hasNext();) { - i.next().detach(); - } - } } /** @@ -4453,10 +4439,6 @@ public class Table extends AbstractSelect implements Action.Container, } } - public void requestRepaintAll() { - AbstractComponentContainer.requestRepaintAll(this); - } - /** * Sets the drag start mode of the Table. Drag start mode controls how Table * behaves as a drag source. |