diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-24 11:52:10 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-24 11:52:10 +0300 |
commit | a4ba2868153ca06d827324655dbb10e5213c9b2d (patch) | |
tree | 0bf271880f7dd456f5edaa48eccf80917bfd22fe /server/tests | |
parent | 3e9c88f9d8e9ebfcb71e30eba18525b2821e7c25 (diff) | |
download | vaadin-framework-a4ba2868153ca06d827324655dbb10e5213c9b2d.tar.gz vaadin-framework-a4ba2868153ca06d827324655dbb10e5213c9b2d.zip |
Rename to VaadinServletService and move to its own file (#9718)
Diffstat (limited to 'server/tests')
-rw-r--r-- | server/tests/src/com/vaadin/server/TestAbstractApplicationServletStaticFilesLocation.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/tests/src/com/vaadin/server/TestAbstractApplicationServletStaticFilesLocation.java b/server/tests/src/com/vaadin/server/TestAbstractApplicationServletStaticFilesLocation.java index 0b581f2b75..18f7fae166 100644 --- a/server/tests/src/com/vaadin/server/TestAbstractApplicationServletStaticFilesLocation.java +++ b/server/tests/src/com/vaadin/server/TestAbstractApplicationServletStaticFilesLocation.java @@ -14,7 +14,6 @@ import javax.servlet.http.HttpServletRequest; import junit.framework.TestCase; import com.vaadin.DefaultDeploymentConfiguration; -import com.vaadin.server.VaadinServlet.ServletService; public class TestAbstractApplicationServletStaticFilesLocation extends TestCase { @@ -31,7 +30,7 @@ public class TestAbstractApplicationServletStaticFilesLocation extends TestCase // Workaround to avoid calling init and creating servlet config Field f = VaadinServlet.class.getDeclaredField("servletService"); f.setAccessible(true); - f.set(servlet, new ServletService(servlet, + f.set(servlet, new VaadinServletService(servlet, new DefaultDeploymentConfiguration(servlet.getClass(), new Properties()))); |