summaryrefslogtreecommitdiff
path: root/cs/test/Ice/exceptions/ThrowerI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs/test/Ice/exceptions/ThrowerI.cs')
-rwxr-xr-xcs/test/Ice/exceptions/ThrowerI.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/cs/test/Ice/exceptions/ThrowerI.cs b/cs/test/Ice/exceptions/ThrowerI.cs
index 106c92c06a3..8e3c5ca32e1 100755
--- a/cs/test/Ice/exceptions/ThrowerI.cs
+++ b/cs/test/Ice/exceptions/ThrowerI.cs
@@ -105,26 +105,26 @@ public sealed class ThrowerI : ThrowerDisp_
public override void throwUndeclaredA(int a, Ice.Current current)
{
- A ex = new A();
- ex.aMem = a;
+ A ex = new A();
+ ex.aMem = a;
throw ex;
}
public override void throwUndeclaredB(int a, int b, Ice.Current current)
{
B ex = new B();
- ex.aMem = a;
- ex.bMem = b;
- throw ex;
+ ex.aMem = a;
+ ex.bMem = b;
+ throw ex;
}
public override void throwUndeclaredC(int a, int b, int c, Ice.Current current)
{
C ex = new C();
- ex.aMem = a;
- ex.bMem = b;
- ex.cMem = c;
- throw ex;
+ ex.aMem = a;
+ ex.bMem = b;
+ ex.cMem = c;
+ throw ex;
}
private Ice.ObjectAdapter _adapter;