diff options
author | Jose <jose@zeroc.com> | 2017-01-27 19:12:46 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-01-27 19:12:46 +0100 |
commit | 5a5f5676a2d4af74d213eb7835a5613538b49a7c (patch) | |
tree | cebb4145ada0c5b155df01ca9ebcd09f8d41b967 /csharp/test/Ice/optional/TestAMDI.cs | |
parent | Fixed Python controller dispatch interfaces (diff) | |
download | ice-5a5f5676a2d4af74d213eb7835a5613538b49a7c.tar.bz2 ice-5a5f5676a2d4af74d213eb7835a5613538b49a7c.tar.xz ice-5a5f5676a2d4af74d213eb7835a5613538b49a7c.zip |
CSharp do not generate proxy for class without operations
Diffstat (limited to 'csharp/test/Ice/optional/TestAMDI.cs')
-rw-r--r-- | csharp/test/Ice/optional/TestAMDI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/test/Ice/optional/TestAMDI.cs b/csharp/test/Ice/optional/TestAMDI.cs index bfbff2a758c..17417fcbdc1 100644 --- a/csharp/test/Ice/optional/TestAMDI.cs +++ b/csharp/test/Ice/optional/TestAMDI.cs @@ -134,7 +134,7 @@ public class InitialI : Test.InitialDisp_ } public override Task<Initial_OpOneOptionalProxyResult> - opOneOptionalProxyAsync(Ice.Optional<OneOptionalPrx> p1, Ice.Current current) + opOneOptionalProxyAsync(Ice.Optional<Ice.ObjectPrx> p1, Ice.Current current) { return Task.FromResult<Initial_OpOneOptionalProxyResult>(new Initial_OpOneOptionalProxyResult(p1, p1)); } |