Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Auge2014-10-22 15:02:59 +0000
committerRaymond Auge2014-10-22 15:02:59 +0000
commitf7d7956d90a341fc0a02e8c2d8a3b401228d0303 (patch)
tree91717ddb9881a9ab01a6b11ac048fec0f10004f3
parentcd9933927146711cdc5c4a0701dade72d8134e71 (diff)
downloadrt.equinox.bundles-f7d7956d90a341fc0a02e8c2d8a3b401228d0303.tar.gz
rt.equinox.bundles-f7d7956d90a341fc0a02e8c2d8a3b401228d0303.tar.xz
rt.equinox.bundles-f7d7956d90a341fc0a02e8c2d8a3b401228d0303.zip
Bug 448218 - Compile warning in official
comment it for now Signed-off-by: Raymond Auge <raymond.auge@liferay.com>
-rw-r--r--bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/customizer/ContextFilterTrackerCustomizer.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/customizer/ContextFilterTrackerCustomizer.java b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/customizer/ContextFilterTrackerCustomizer.java
index 2b44ab9dd..447126caf 100644
--- a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/customizer/ContextFilterTrackerCustomizer.java
+++ b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/customizer/ContextFilterTrackerCustomizer.java
@@ -79,12 +79,14 @@ public class ContextFilterTrackerCustomizer
serviceReference.getProperty(
HttpWhiteboardConstants.HTTP_WHITEBOARD_FILTER_SERVLET));
String[] servlets = servletList.toArray(new String[servletList.size()]);
- List<String> regexList = StringPlus.from(
- serviceReference.getProperty(
- HttpWhiteboardConstants.HTTP_WHITEBOARD_FILTER_REGEX));
- // TODO add this
- String[] regex = regexList.toArray(new String[regexList.size()]);
+ // TODO add regex support - 140.5
+
+ // List<String> regexList = StringPlus.from(
+ // serviceReference.getProperty(
+ // HttpWhiteboardConstants.HTTP_WHITEBOARD_FILTER_REGEX));
+
+ // String[] regex = regexList.toArray(new String[regexList.size()]);
Filter filter = bundleContext.getService(serviceReference);
String name = parseName(serviceReference.getProperty(

Back to the top