diff options
author | Leif Åstrand <leif@vaadin.com> | 2011-12-19 18:33:55 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2011-12-19 18:33:55 +0200 |
commit | 24da964fbc15cd3daec9f5c67a4776446fc205a9 (patch) | |
tree | c78642af637c2266bfba517375977c09985e6580 | |
parent | 884d029ca78a3c198611feca9fd0a739ebc1e3d1 (diff) | |
download | vaadin-framework-24da964fbc15cd3daec9f5c67a4776446fc205a9.tar.gz vaadin-framework-24da964fbc15cd3daec9f5c67a4776446fc205a9.zip |
Add license and Serializable to ServletPortletHelper
-rw-r--r-- | src/com/vaadin/terminal/gwt/server/ServletPortletHelper.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/server/ServletPortletHelper.java b/src/com/vaadin/terminal/gwt/server/ServletPortletHelper.java index e6282db7bd..9b1e60e621 100644 --- a/src/com/vaadin/terminal/gwt/server/ServletPortletHelper.java +++ b/src/com/vaadin/terminal/gwt/server/ServletPortletHelper.java @@ -1,9 +1,15 @@ package com.vaadin.terminal.gwt.server; +import java.io.Serializable; + import com.vaadin.Application; import com.vaadin.ui.Root; -class ServletPortletHelper { +/* + @VaadinApache2LicenseForJavaFiles@ + */ + +class ServletPortletHelper implements Serializable { public static class ApplicationClassException extends Exception { public ApplicationClassException(String message, Throwable cause) { |