diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-05 15:45:16 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-05 15:45:16 +0300 |
commit | 3ddaf280d61642742dff3f4a63376d0eedca5abf (patch) | |
tree | a0054ad801c4085a2310fa92d1cea1cfe82d6ffb /uitest/src/com/vaadin/tests/tickets/Ticket2106.java | |
parent | de3ac989c85451767510917822463353bcab71cd (diff) | |
download | vaadin-framework-3ddaf280d61642742dff3f4a63376d0eedca5abf.tar.gz vaadin-framework-3ddaf280d61642742dff3f4a63376d0eedca5abf.zip |
Move LegacyApplication to its own file (#9402)
Diffstat (limited to 'uitest/src/com/vaadin/tests/tickets/Ticket2106.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/tickets/Ticket2106.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket2106.java b/uitest/src/com/vaadin/tests/tickets/Ticket2106.java index a57a20cdc3..569d4fe30f 100644 --- a/uitest/src/com/vaadin/tests/tickets/Ticket2106.java +++ b/uitest/src/com/vaadin/tests/tickets/Ticket2106.java @@ -2,7 +2,7 @@ package com.vaadin.tests.tickets; import java.util.Date; -import com.vaadin.Application; +import com.vaadin.LegacyApplication; import com.vaadin.server.CustomizedSystemMessages; import com.vaadin.server.SystemMessages; import com.vaadin.ui.Button; @@ -10,7 +10,7 @@ import com.vaadin.ui.Button.ClickEvent; import com.vaadin.ui.Label; import com.vaadin.ui.UI.LegacyWindow; -public class Ticket2106 extends Application.LegacyApplication { +public class Ticket2106 extends LegacyApplication { private static CustomizedSystemMessages msgs = new CustomizedSystemMessages(); static { |