aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/server/BootstrapFragmentResponse.java
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/com/vaadin/server/BootstrapFragmentResponse.java')
-rw-r--r--server/src/com/vaadin/server/BootstrapFragmentResponse.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/server/src/com/vaadin/server/BootstrapFragmentResponse.java b/server/src/com/vaadin/server/BootstrapFragmentResponse.java
index 149f59e7a5..4b960263e7 100644
--- a/server/src/com/vaadin/server/BootstrapFragmentResponse.java
+++ b/server/src/com/vaadin/server/BootstrapFragmentResponse.java
@@ -20,7 +20,6 @@ import java.util.List;
import org.jsoup.nodes.Node;
-import com.vaadin.Application;
import com.vaadin.ui.UI;
/**
@@ -38,7 +37,7 @@ public class BootstrapFragmentResponse extends BootstrapResponse {
* Crate a new bootstrap fragment response.
*
* @see BootstrapResponse#BootstrapResponse(BootstrapHandler,
- * WrappedRequest, Application, Class)
+ * WrappedRequest, VaadinSession, Class)
*
* @param handler
* the bootstrap handler that is firing the event
@@ -55,7 +54,7 @@ public class BootstrapFragmentResponse extends BootstrapResponse {
* application HTML
*/
public BootstrapFragmentResponse(BootstrapHandler handler,
- WrappedRequest request, Application application,
+ WrappedRequest request, VaadinSession application,
Class<? extends UI> uiClass, List<Node> fragmentNodes) {
super(handler, request, application, uiClass);
this.fragmentNodes = fragmentNodes;