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 /uitest/src/com/vaadin/tests/application | |
parent | 15f833480da7a5eff0d29c527cd956b9e9658401 (diff) | |
download | vaadin-framework-9a3a22cc9f8f95054e3528b0ffcc0b9e92cffbea.tar.gz vaadin-framework-9a3a22cc9f8f95054e3528b0ffcc0b9e92cffbea.zip |
Renamed VaadinServiceSession to VaadinSession (#10223)
Change-Id: Id7f367300c000aa47edc12084f4e9500502466c3
Diffstat (limited to 'uitest/src/com/vaadin/tests/application')
-rw-r--r-- | uitest/src/com/vaadin/tests/application/ThreadLocalInstances.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/uitest/src/com/vaadin/tests/application/ThreadLocalInstances.java b/uitest/src/com/vaadin/tests/application/ThreadLocalInstances.java index ac4e421fdc..57c4e3c7b9 100644 --- a/uitest/src/com/vaadin/tests/application/ThreadLocalInstances.java +++ b/uitest/src/com/vaadin/tests/application/ThreadLocalInstances.java @@ -3,7 +3,7 @@ package com.vaadin.tests.application; import com.vaadin.server.DownloadStream; import com.vaadin.server.PaintException; import com.vaadin.server.VaadinRequest; -import com.vaadin.server.VaadinServiceSession; +import com.vaadin.server.VaadinSession; import com.vaadin.tests.components.AbstractTestCase; import com.vaadin.tests.integration.FlagSeResource; import com.vaadin.tests.util.Log; @@ -14,7 +14,7 @@ import com.vaadin.ui.LegacyWindow; import com.vaadin.ui.UI; public class ThreadLocalInstances extends AbstractTestCase { - private static final VaadinServiceSession staticInitApplication = VaadinServiceSession + private static final VaadinSession staticInitApplication = VaadinSession .getCurrent(); private static final UI staticInitRoot = UI.getCurrent(); @@ -90,10 +90,10 @@ public class ThreadLocalInstances extends AbstractTestCase { } private void reportCurrentStatus(String phase) { - reportStatus(phase, VaadinServiceSession.getCurrent(), UI.getCurrent()); + reportStatus(phase, VaadinSession.getCurrent(), UI.getCurrent()); } - private void reportStatus(String phase, VaadinServiceSession application, + private void reportStatus(String phase, VaadinSession application, UI uI) { log.log(getState(application, this) + " app in " + phase); log.log(getState(uI, mainWindow) + " root in " + phase); |