diff options
Diffstat (limited to 'cs/demo/Ice/hello/HelloI.cs')
-rwxr-xr-x | cs/demo/Ice/hello/HelloI.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cs/demo/Ice/hello/HelloI.cs b/cs/demo/Ice/hello/HelloI.cs index 8f397039521..5d3c56ac15d 100755 --- a/cs/demo/Ice/hello/HelloI.cs +++ b/cs/demo/Ice/hello/HelloI.cs @@ -14,9 +14,9 @@ public class HelloI : HelloDisp_ public override void sayHello(int delay, Ice.Current current) { if(delay > 0) - { - System.Threading.Thread.Sleep(delay); - } + { + System.Threading.Thread.Sleep(delay); + } System.Console.Out.WriteLine("Hello World!"); } |