diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-06 06:41:03 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-06 06:41:03 +0000 |
commit | 0a31deda50d483946048f3d73cddc1478b147af1 (patch) | |
tree | 4694dc490726f7f910b4cb348108f6ecaa915a1a /uitest | |
parent | 125dcf3cdf9eb206bcd372e977cc7f994b659fd5 (diff) | |
parent | d27ee3d1be8231d8947933f628be2b456b05d863 (diff) | |
download | vaadin-framework-0a31deda50d483946048f3d73cddc1478b147af1.tar.gz vaadin-framework-0a31deda50d483946048f3d73cddc1478b147af1.zip |
Merge "Fixed compilation error"
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java b/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java index 0fd143cc2f..92b1a4236d 100644 --- a/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java +++ b/uitest/src/com/vaadin/tests/layouts/MovingComponentsWhileOldParentInvisible.java @@ -12,7 +12,6 @@ import com.vaadin.ui.ComponentContainer; import com.vaadin.ui.CustomComponent; import com.vaadin.ui.CustomLayout; import com.vaadin.ui.Label; -import com.vaadin.ui.LabelDataSource; import com.vaadin.ui.LegacyWindow; import com.vaadin.ui.LoginForm; import com.vaadin.ui.PopupView; @@ -47,8 +46,7 @@ public class MovingComponentsWhileOldParentInvisible extends TestBase { if (cls == LoginForm.class || cls == CustomLayout.class || CustomComponent.class.isAssignableFrom(cls) || cls == PopupView.class || cls == Window.class - || cls == UI.class || cls == LegacyWindow.class - || cls == LabelDataSource.MockUI.class) { + || cls == UI.class || cls == LegacyWindow.class) { // Does not support addComponent continue; } |