diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-07 13:47:51 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-07 13:48:25 +0300 |
commit | 7cf781eaf62f145d96a562c945232c32c74df263 (patch) | |
tree | 0584391263c86f657a8bf9065fd92d11c54030d5 /server/tests/src | |
parent | cf99cbc9e1f556fa89f5b1ced39eaca3f119f733 (diff) | |
download | vaadin-framework-7cf781eaf62f145d96a562c945232c32c74df263.tar.gz vaadin-framework-7cf781eaf62f145d96a562c945232c32c74df263.zip |
Rename Application back to LegacyApplication (#9402)
Diffstat (limited to 'server/tests/src')
-rw-r--r-- | server/tests/src/com/vaadin/tests/server/component/window/AddRemoveSubWindow.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/src/com/vaadin/tests/server/component/window/AddRemoveSubWindow.java b/server/tests/src/com/vaadin/tests/server/component/window/AddRemoveSubWindow.java index 2e59f9ee41..9ee4ffe6e7 100644 --- a/server/tests/src/com/vaadin/tests/server/component/window/AddRemoveSubWindow.java +++ b/server/tests/src/com/vaadin/tests/server/component/window/AddRemoveSubWindow.java @@ -6,14 +6,14 @@ import static org.junit.Assert.assertTrue; import org.junit.Test; -import com.vaadin.Application; +import com.vaadin.LegacyApplication; import com.vaadin.ui.UI; import com.vaadin.ui.UI.LegacyWindow; import com.vaadin.ui.Window; public class AddRemoveSubWindow { - public class TestApp extends Application { + public class TestApp extends LegacyApplication { @Override public void init() { |