diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-21 19:50:35 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-11-21 19:50:35 +0200 |
commit | fe5d8509be179fdcdf55a973175e2716e3fbceb6 (patch) | |
tree | 853b027ad985ca60ad8fca722e55e8ad6518bd22 /uitest | |
parent | 9c6f6727f17642dd7e5dcd38accada717a54e1f3 (diff) | |
download | vaadin-framework-fe5d8509be179fdcdf55a973175e2716e3fbceb6.tar.gz vaadin-framework-fe5d8509be179fdcdf55a973175e2716e3fbceb6.zip |
Fixed compilation error caused by class hierarchy changes
Change-Id: I321082dec7678d05741ea9e6ea241b5ecf074fd1
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java b/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java index cda1407079..e6b8f4a416 100644 --- a/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java +++ b/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java @@ -9,11 +9,8 @@ import com.vaadin.ui.Button; import com.vaadin.ui.Button.ClickEvent; import com.vaadin.ui.ComboBox; import com.vaadin.ui.ComponentContainer; -import com.vaadin.ui.CustomComponent; import com.vaadin.ui.CustomLayout; import com.vaadin.ui.Label; -import com.vaadin.ui.LoginForm; -import com.vaadin.ui.PopupView; public class MovingComponentsWhileOldParentInvisible extends TestBase { @@ -40,9 +37,7 @@ public class MovingComponentsWhileOldParentInvisible extends TestBase { for (Class<? extends ComponentContainer> cls : VaadinClasses .getComponentContainers()) { - if (cls == LoginForm.class || cls == CustomLayout.class - || CustomComponent.class.isAssignableFrom(cls) - || cls == PopupView.class) { + if (cls == CustomLayout.class) { // Does not support addComponent continue; } |