summaryrefslogtreecommitdiff
path: root/java/test/Ice/interceptor/InterceptorI.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/Ice/interceptor/InterceptorI.java')
-rw-r--r--java/test/Ice/interceptor/InterceptorI.java4
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;
}