summaryrefslogtreecommitdiff
path: root/cs/demo/Ice/nested/NestedI.cs
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2004-07-14 05:38:48 +0000
committerMichi Henning <michi@zeroc.com>2004-07-14 05:38:48 +0000
commit9ee36e5afbc59b4c610935de99cb98232152a6e7 (patch)
tree86341cbe50b32ca088ca91ca64b434e117a80264 /cs/demo/Ice/nested/NestedI.cs
parentFixed a few formatting issues. (diff)
downloadice-9ee36e5afbc59b4c610935de99cb98232152a6e7.tar.bz2
ice-9ee36e5afbc59b4c610935de99cb98232152a6e7.tar.xz
ice-9ee36e5afbc59b4c610935de99cb98232152a6e7.zip
Removed DOS line endings.
Added work-around for Mono 1.0 WaitOne() bug under Linux.
Diffstat (limited to 'cs/demo/Ice/nested/NestedI.cs')
-rwxr-xr-xcs/demo/Ice/nested/NestedI.cs38
1 files changed, 19 insertions, 19 deletions
diff --git a/cs/demo/Ice/nested/NestedI.cs b/cs/demo/Ice/nested/NestedI.cs
index ef7ddd56bf9..39a13222ad1 100755
--- a/cs/demo/Ice/nested/NestedI.cs
+++ b/cs/demo/Ice/nested/NestedI.cs
@@ -7,22 +7,22 @@
//
// **********************************************************************
-
-class NestedI : Nested
-{
- internal NestedI(NestedPrx self)
- {
- _self = self;
- }
-
- public override void nestedCall(int level, NestedPrx proxy, Ice.Current current)
- {
- System.Console.Out.WriteLine("" + level);
- if(--level > 0)
- {
- proxy.nestedCall(level, _self, current.ctx);
- }
- }
-
- private NestedPrx _self;
-}
+
+class NestedI : Nested
+{
+ internal NestedI(NestedPrx self)
+ {
+ _self = self;
+ }
+
+ public override void nestedCall(int level, NestedPrx proxy, Ice.Current current)
+ {
+ System.Console.Out.WriteLine("" + level);
+ if(--level > 0)
+ {
+ proxy.nestedCall(level, _self, current.ctx);
+ }
+ }
+
+ private NestedPrx _self;
+}