diff options
author | Mark Spruiell <mes@zeroc.com> | 2016-09-08 13:56:08 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2016-09-08 13:56:08 -0700 |
commit | 2e78fe1212d27bbcfb049dfa6a56e52db496b816 (patch) | |
tree | ff33e5967bbb7ce6aa528dac6db88d4177efe8cb /csharp/test/Ice/optional/TestAMDI.cs | |
parent | Update java-compat to latest version of builder (diff) | |
download | ice-2e78fe1212d27bbcfb049dfa6a56e52db496b816.tar.bz2 ice-2e78fe1212d27bbcfb049dfa6a56e52db496b816.tar.xz ice-2e78fe1212d27bbcfb049dfa6a56e52db496b816.zip |
ICE-7333 - Java/C# cross test failure in Ice/optional
Diffstat (limited to 'csharp/test/Ice/optional/TestAMDI.cs')
-rw-r--r-- | csharp/test/Ice/optional/TestAMDI.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/csharp/test/Ice/optional/TestAMDI.cs b/csharp/test/Ice/optional/TestAMDI.cs index f5293fc9dae..bfbff2a758c 100644 --- a/csharp/test/Ice/optional/TestAMDI.cs +++ b/csharp/test/Ice/optional/TestAMDI.cs @@ -350,4 +350,10 @@ public class InitialI : Test.InitialDisp_ { return Task.FromResult<bool>(false); } + + public override Task<bool> + supportsNullOptionalAsync(Ice.Current current) + { + return Task.FromResult<bool>(true); + } } |