diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-06 08:54:13 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-06 08:54:13 +0300 |
commit | 28a504e64a9701ccae9177cf815e27a13b1b1ca1 (patch) | |
tree | b9e05181e56f0960fb59b2db85fc186d47fdcf99 /server/src/com | |
parent | 7d25670284b11c7c62ba25183f265227cb3dba83 (diff) | |
download | vaadin-framework-28a504e64a9701ccae9177cf815e27a13b1b1ca1.tar.gz vaadin-framework-28a504e64a9701ccae9177cf815e27a13b1b1ca1.zip |
Remove invalid import
Diffstat (limited to 'server/src/com')
-rw-r--r-- | server/src/com/vaadin/server/ApplicationConfiguration.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/server/src/com/vaadin/server/ApplicationConfiguration.java b/server/src/com/vaadin/server/ApplicationConfiguration.java index 1b56906f78..dfb202f3fa 100644 --- a/server/src/com/vaadin/server/ApplicationConfiguration.java +++ b/server/src/com/vaadin/server/ApplicationConfiguration.java @@ -18,8 +18,6 @@ package com.vaadin.server; import java.util.Properties; -import org.apache.catalina.core.ApplicationContext; - /** * A collection of properties configured for all applications as well as a way * of accessing third party properties not explicitely supported by this class. @@ -63,7 +61,7 @@ public interface ApplicationConfiguration { * should be closed after they have been idle the maximum inactivity time * enforced by the session. * - * @see ApplicationContext#getMaxInactiveInterval() + * @see WrappedSession#getMaxInactiveInterval() * * @since 7.0.0 * |