diff options
author | Joe George <joe@zeroc.com> | 2017-05-03 12:02:39 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2017-05-03 15:21:00 -0400 |
commit | 6f529c5068754f5ee28fadfa41487c3625b5c7ea (patch) | |
tree | 101e0655019ba9e06dc9f24da5ae43638796d6aa /csharp/test/Ice/optional/TestAMDI.cs | |
parent | IceBridge bug fix (diff) | |
download | ice-6f529c5068754f5ee28fadfa41487c3625b5c7ea.tar.bz2 ice-6f529c5068754f5ee28fadfa41487c3625b5c7ea.tar.xz ice-6f529c5068754f5ee28fadfa41487c3625b5c7ea.zip |
Remove unnecessary tabs
Diffstat (limited to 'csharp/test/Ice/optional/TestAMDI.cs')
-rw-r--r-- | csharp/test/Ice/optional/TestAMDI.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/csharp/test/Ice/optional/TestAMDI.cs b/csharp/test/Ice/optional/TestAMDI.cs index 3826a2464e5..9e33b82d76a 100644 --- a/csharp/test/Ice/optional/TestAMDI.cs +++ b/csharp/test/Ice/optional/TestAMDI.cs @@ -272,56 +272,56 @@ public class InitialI : Test.InitialDisp_ } public async override Task<Test.Initial_OpMStruct1MarshaledResult> - opMStruct1Async(Ice.Current current) + opMStruct1Async(Ice.Current current) { await Task.Delay(0); return new Test.Initial_OpMStruct1MarshaledResult(new Test.SmallStruct(), current); } public async override Task<Test.Initial_OpMStruct2MarshaledResult> - opMStruct2Async(Ice.Optional<Test.SmallStruct> p1, Ice.Current current) + opMStruct2Async(Ice.Optional<Test.SmallStruct> p1, Ice.Current current) { await Task.Delay(0); return new Test.Initial_OpMStruct2MarshaledResult(p1, p1, current); } public async override Task<Test.Initial_OpMSeq1MarshaledResult> - opMSeq1Async(Ice.Current current) + opMSeq1Async(Ice.Current current) { await Task.Delay(0); return new Test.Initial_OpMSeq1MarshaledResult(new string[0], current); } public async override Task<Test.Initial_OpMSeq2MarshaledResult> - opMSeq2Async(Ice.Optional<string[]> p1, Ice.Current current) + opMSeq2Async(Ice.Optional<string[]> p1, Ice.Current current) { await Task.Delay(0); return new Test.Initial_OpMSeq2MarshaledResult(p1, p1, current); } public async override Task<Test.Initial_OpMDict1MarshaledResult> - opMDict1Async(Ice.Current current) + opMDict1Async(Ice.Current current) { await Task.Delay(0); return new Test.Initial_OpMDict1MarshaledResult(new Dictionary<string, int>(), current); } public async override Task<Test.Initial_OpMDict2MarshaledResult> - opMDict2Async(Ice.Optional<Dictionary<string, int>> p1, Ice.Current current) + opMDict2Async(Ice.Optional<Dictionary<string, int>> p1, Ice.Current current) { await Task.Delay(0); return new Test.Initial_OpMDict2MarshaledResult(p1, p1, current); } public async override Task<Test.Initial_OpMG1MarshaledResult> - opMG1Async(Ice.Current current) + opMG1Async(Ice.Current current) { await Task.Delay(0); return new Test.Initial_OpMG1MarshaledResult(new Test.G(), current); } public async override Task<Test.Initial_OpMG2MarshaledResult> - opMG2Async(Ice.Optional<Test.G> p1, Ice.Current current) + opMG2Async(Ice.Optional<Test.G> p1, Ice.Current current) { await Task.Delay(0); return new Test.Initial_OpMG2MarshaledResult(p1, p1, current); |