diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-16 18:29:44 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-11-16 18:29:44 +0200 |
commit | 9a3a22cc9f8f95054e3528b0ffcc0b9e92cffbea (patch) | |
tree | 9f2c7302f294ffe8c02915b1d7f286733f815817 /server/tests/src/com/vaadin/ui/LabelDataSource.java | |
parent | 15f833480da7a5eff0d29c527cd956b9e9658401 (diff) | |
download | vaadin-framework-9a3a22cc9f8f95054e3528b0ffcc0b9e92cffbea.tar.gz vaadin-framework-9a3a22cc9f8f95054e3528b0ffcc0b9e92cffbea.zip |
Renamed VaadinServiceSession to VaadinSession (#10223)
Change-Id: Id7f367300c000aa47edc12084f4e9500502466c3
Diffstat (limited to 'server/tests/src/com/vaadin/ui/LabelDataSource.java')
-rw-r--r-- | server/tests/src/com/vaadin/ui/LabelDataSource.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/src/com/vaadin/ui/LabelDataSource.java b/server/tests/src/com/vaadin/ui/LabelDataSource.java index 7ef8d67c2a..4240735f63 100644 --- a/server/tests/src/com/vaadin/ui/LabelDataSource.java +++ b/server/tests/src/com/vaadin/ui/LabelDataSource.java @@ -23,7 +23,7 @@ import org.junit.Test; import com.vaadin.data.util.ObjectProperty; import com.vaadin.server.VaadinRequest; -import com.vaadin.server.VaadinServiceSession; +import com.vaadin.server.VaadinSession; public class LabelDataSource { @@ -35,12 +35,12 @@ public class LabelDataSource { private static final Object INTEGER_STRING_VALUE_DE = "1.587"; ObjectProperty<String> stringDataSource; private ObjectProperty<Integer> integerDataSource; - VaadinServiceSession vaadinSession; + VaadinSession vaadinSession; @Before public void setup() { - vaadinSession = new VaadinServiceSession(null); - VaadinServiceSession.setCurrent(vaadinSession); + vaadinSession = new VaadinSession(null); + VaadinSession.setCurrent(vaadinSession); label = new Label(); stringDataSource = new ObjectProperty<String>(STRING_DS_VALUE); |