aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/Application.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2011-11-29 14:41:54 +0200
committerLeif Åstrand <leif@vaadin.com>2011-11-29 14:41:54 +0200
commitbe546bddfe0765b4d40f4bdeb8eb5e9c1be5bdcf (patch)
treed39ac393b683040342f9abceab6e5c4178ef2608 /src/com/vaadin/Application.java
parent37d4caa223095a0f7a080365bb43b68553dd669c (diff)
downloadvaadin-framework-be546bddfe0765b4d40f4bdeb8eb5e9c1be5bdcf.tar.gz
vaadin-framework-be546bddfe0765b4d40f4bdeb8eb5e9c1be5bdcf.zip
Add Serializable interface missing from some classes
Diffstat (limited to 'src/com/vaadin/Application.java')
-rw-r--r--src/com/vaadin/Application.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/Application.java b/src/com/vaadin/Application.java
index 874455f3c0..23bac80e19 100644
--- a/src/com/vaadin/Application.java
+++ b/src/com/vaadin/Application.java
@@ -210,7 +210,7 @@ public class Application implements Terminal.ErrorListener, Serializable {
}
}
- private static class PendingRootRequest {
+ private static class PendingRootRequest implements Serializable {
private final Map<String, String[]> parameterMap;
private final String pathInfo;