Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Archer2011-10-19 21:30:35 +0000
committerThomas Watson2011-10-19 21:30:35 +0000
commit2015e422b51f5a791908cddac57ab70a67cb6223 (patch)
tree523946865bde75a7d9ebf3de6410139354a2753f
parentef8938a081e0e49e652097b6dc9fa96d29f4ce2e (diff)
downloadrt.equinox.bundles-2015e422b51f5a791908cddac57ab70a67cb6223.tar.gz
rt.equinox.bundles-2015e422b51f5a791908cddac57ab70a67cb6223.tar.xz
rt.equinox.bundles-2015e422b51f5a791908cddac57ab70a67cb6223.zip
Bug 341643 - Fixed warnings about synthetic methods in
JspServlet.ServletContextAdaptor.
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper/src/org/eclipse/equinox/jsp/jasper/JspServlet.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.jsp.jasper/src/org/eclipse/equinox/jsp/jasper/JspServlet.java b/bundles/org.eclipse.equinox.jsp.jasper/src/org/eclipse/equinox/jsp/jasper/JspServlet.java
index 50399ea46..9adcfa9d6 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper/src/org/eclipse/equinox/jsp/jasper/JspServlet.java
+++ b/bundles/org.eclipse.equinox.jsp.jasper/src/org/eclipse/equinox/jsp/jasper/JspServlet.java
@@ -198,7 +198,7 @@ public class JspServlet extends HttpServlet {
}
}
- private final static Map contextToHandlerMethods;
+ final static Map contextToHandlerMethods;
static {
contextToHandlerMethods = createContextToHandlerMethods();
}
@@ -243,7 +243,7 @@ public class JspServlet extends HttpServlet {
};
}
- private Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
+ Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
Method m = (Method) JspServlet.contextToHandlerMethods.get(method);
if (m != null) {
return m.invoke(this, args);

Back to the top