diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-07-11 18:19:52 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-07-11 18:19:52 +0200 |
commit | 3184f261238e75470e18fd9441524eddcb4847df (patch) | |
tree | 6897211e132003d3605c386618d8643429df2671 /java-compat | |
parent | Check for NodeJS to build/run JS tests (diff) | |
download | ice-3184f261238e75470e18fd9441524eddcb4847df.tar.bz2 ice-3184f261238e75470e18fd9441524eddcb4847df.tar.xz ice-3184f261238e75470e18fd9441524eddcb4847df.zip |
Fixed C++11 issue with previous Ice/interceptor test fix
Diffstat (limited to 'java-compat')
-rw-r--r-- | java-compat/src/Ice/src/main/java/Ice/DispatchInterceptor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java-compat/src/Ice/src/main/java/Ice/DispatchInterceptor.java b/java-compat/src/Ice/src/main/java/Ice/DispatchInterceptor.java index 3935de43b3e..355e81dd354 100644 --- a/java-compat/src/Ice/src/main/java/Ice/DispatchInterceptor.java +++ b/java-compat/src/Ice/src/main/java/Ice/DispatchInterceptor.java @@ -48,7 +48,7 @@ public abstract class DispatchInterceptor extends ObjectImpl // // If the input parameters weren't read, make sure we skip them here. It's needed to read the // encoding version used by the client to eventually marshal the user exception. It's also needed - // if we are dispatch a batch oneway request to read the next batch request. + // if we dispatch a batch oneway request to read the next batch request. // if(current.encoding == null || (current.encoding.major == 0 && current.encoding.minor == 0)) { |