diff options
| author | Simon Archer | 2011-10-19 21:29:04 +0000 |
|---|---|---|
| committer | Thomas Watson | 2011-10-19 21:29:04 +0000 |
| commit | ef8938a081e0e49e652097b6dc9fa96d29f4ce2e (patch) | |
| tree | d7d85671a009a34d06d0ca4d44be6619fd872521 | |
| parent | 0587f386eb67aa030f74601a13dd328050fe30fd (diff) | |
| download | rt.equinox.bundles-ef8938a081e0e49e652097b6dc9fa96d29f4ce2e.tar.gz rt.equinox.bundles-ef8938a081e0e49e652097b6dc9fa96d29f4ce2e.tar.xz rt.equinox.bundles-ef8938a081e0e49e652097b6dc9fa96d29f4ce2e.zip | |
Bug 341643 - Fixed warning about synthetic method in invoke method.
| -rw-r--r-- | bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/ServletContextAdaptor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/ServletContextAdaptor.java b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/ServletContextAdaptor.java index e3968850d..f9e60473a 100644 --- a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/ServletContextAdaptor.java +++ b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/ServletContextAdaptor.java @@ -72,7 +72,7 @@ public class ServletContextAdaptor { }; } - private Object invoke(Object proxy, Method method, Object[] args) throws Throwable { + Object invoke(Object proxy, Method method, Object[] args) throws Throwable { Method m = (Method) contextToHandlerMethods.get(method); if (m != null) { return m.invoke(this, args); |
