Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Auge2018-01-22 17:26:47 +0000
committerRaymond Auge2018-01-22 17:26:47 +0000
commit8cde2605e49cd1db19af2adfaa642f96ae53de60 (patch)
treed9e1ac75f7eee5b281f3402dfa9d926767dbc786
parent921a36adf6f01a3f48401e9c0372d0da61921e54 (diff)
downloadrt.equinox.bundles-8cde2605e49cd1db19af2adfaa642f96ae53de60.tar.gz
rt.equinox.bundles-8cde2605e49cd1db19af2adfaa642f96ae53de60.tar.xz
rt.equinox.bundles-8cde2605e49cd1db19af2adfaa642f96ae53de60.zip
Bug 530141 - [http servlet] cleanup @since tagsI20180123-0800I20180122-2000
Signed-off-by: Raymond Auge <raymond.auge@liferay.com>
-rw-r--r--bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/RangeAwareServletContextHelper.java2
-rw-r--r--bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/servlet/HttpSessionTracker.java2
-rw-r--r--bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/session/HttpSessionInvalidator.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/RangeAwareServletContextHelper.java b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/RangeAwareServletContextHelper.java
index 7241b8418..799188c9f 100644
--- a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/RangeAwareServletContextHelper.java
+++ b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/RangeAwareServletContextHelper.java
@@ -19,7 +19,7 @@ import org.osgi.service.http.context.ServletContextHelper;
* A custom servlet context helper type providing support for predicting the need
* for ranged content responses based on the content type and the user agent.
*
- * @since 1.4
+ * @since 1.5
*/
public abstract class RangeAwareServletContextHelper extends ServletContextHelper {
diff --git a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/servlet/HttpSessionTracker.java b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/servlet/HttpSessionTracker.java
index e1c05f365..3457f5e4e 100644
--- a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/servlet/HttpSessionTracker.java
+++ b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/servlet/HttpSessionTracker.java
@@ -22,7 +22,7 @@ import org.eclipse.equinox.http.servlet.internal.util.EventListeners;
import org.eclipse.equinox.http.servlet.session.HttpSessionInvalidator;
/**
- * @since 1.4
+ * @since 1.5
*/
public class HttpSessionTracker implements HttpSessionInvalidator {
diff --git a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/session/HttpSessionInvalidator.java b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/session/HttpSessionInvalidator.java
index 06c46467b..e1595b78e 100644
--- a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/session/HttpSessionInvalidator.java
+++ b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/session/HttpSessionInvalidator.java
@@ -23,7 +23,7 @@ package org.eclipse.equinox.http.servlet.session;
* adopters on the understanding that any code that uses this SPI will almost certainly
* be broken (repeatedly) as the SPI evolves.
* </p>
- * @since 1.4
+ * @since 1.5
*/
public interface HttpSessionInvalidator {

Back to the top