diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-19 10:43:09 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-19 10:43:09 -0230 |
commit | c28420f50886170f9b12d7d211f79739538e2f2f (patch) | |
tree | 99cee30ecf52e6529fbaeb4217df3257f48367c1 /java/test/Ice/interceptor/InterceptorI.java | |
parent | Added Ruby implemetation of EndpointInfo and ConnectionInfo (diff) | |
download | ice-c28420f50886170f9b12d7d211f79739538e2f2f.tar.bz2 ice-c28420f50886170f9b12d7d211f79739538e2f2f.tar.xz ice-c28420f50886170f9b12d7d211f79739538e2f2f.zip |
Bug 4030 - overload ice_dispatch
Diffstat (limited to 'java/test/Ice/interceptor/InterceptorI.java')
-rw-r--r-- | java/test/Ice/interceptor/InterceptorI.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/Ice/interceptor/InterceptorI.java b/java/test/Ice/interceptor/InterceptorI.java index da337a5af21..99664f2f8da 100644 --- a/java/test/Ice/interceptor/InterceptorI.java +++ b/java/test/Ice/interceptor/InterceptorI.java @@ -40,7 +40,7 @@ class InterceptorI extends Ice.DispatchInterceptor { try { - _servant.ice_dispatch(request, null); + _servant.ice_dispatch(request); test(false); } catch(RetryException re) @@ -54,7 +54,7 @@ class InterceptorI extends Ice.DispatchInterceptor current.ctx.put("retry", "no"); } - _lastStatus = _servant.ice_dispatch(request, null); + _lastStatus = _servant.ice_dispatch(request); return _lastStatus; } |