diff options
author | Artur Signell <artur@vaadin.com> | 2012-09-24 08:54:50 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-24 12:06:20 +0300 |
commit | 45332b5744d886e36bb999a48f0de26161458066 (patch) | |
tree | 2ed18ecabfc86b37b872ed25b1aa2c565d5f39e2 /uitest/src/com/vaadin/launcher | |
parent | b6f3d703051ec6bc471eac1f77c78e22cbb71393 (diff) | |
download | vaadin-framework-45332b5744d886e36bb999a48f0de26161458066.tar.gz vaadin-framework-45332b5744d886e36bb999a48f0de26161458066.zip |
Fixed serialization issues (#9640)
ConnectorTracker diff state is now transient and thus not serialized. This could be improved in the future (#9717)
Diffstat (limited to 'uitest/src/com/vaadin/launcher')
-rw-r--r-- | uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java b/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java index 5a2e9c30a9..b121ae7992 100644 --- a/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java +++ b/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java @@ -53,7 +53,7 @@ public class ApplicationRunnerServlet extends LegacyVaadinServlet { */ private LinkedHashSet<String> defaultPackages = new LinkedHashSet<String>(); - private final ThreadLocal<HttpServletRequest> request = new ThreadLocal<HttpServletRequest>(); + private transient final ThreadLocal<HttpServletRequest> request = new ThreadLocal<HttpServletRequest>(); @Override public void init(ServletConfig servletConfig) throws ServletException { |