diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-25 18:03:20 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-25 18:03:20 +0000 |
commit | 364c465628189a4f3dee6eac54ff48825c48e681 (patch) | |
tree | a7d51101d0fdfef43601b48965c2935059e617b6 /java/demo/Ice/value/Client.java | |
parent | comments (diff) | |
download | ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.bz2 ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.xz ice-364c465628189a4f3dee6eac54ff48825c48e681.zip |
removed spaces
Diffstat (limited to 'java/demo/Ice/value/Client.java')
-rw-r--r-- | java/demo/Ice/value/Client.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/java/demo/Ice/value/Client.java b/java/demo/Ice/value/Client.java index e634376486d..ac529327992 100644 --- a/java/demo/Ice/value/Client.java +++ b/java/demo/Ice/value/Client.java @@ -17,7 +17,7 @@ public class Client { in.readLine(); } - catch (java.io.IOException ex) + catch(java.io.IOException ex) { ex.printStackTrace(); } @@ -68,7 +68,7 @@ public class Client { initial.printer(printer, printerProxy); } - catch (Ice.NoObjectFactoryException ex) + catch(Ice.NoObjectFactoryException ex) { System.out.println("==> " + ex); } @@ -116,7 +116,7 @@ public class Client derivedAsBase = initial.derivedPrinter(); assert(false); } - catch (Ice.NoObjectFactoryException ex) + catch(Ice.NoObjectFactoryException ex) { System.out.println("==> " + ex); } @@ -158,7 +158,7 @@ public class Client { initial.throwDerivedPrinter(); } - catch (DerivedPrinterException ex) + catch(DerivedPrinterException ex) { derived = ex.derived; assert(derived != null); @@ -187,7 +187,7 @@ public class Client communicator = Ice.Util.initializeWithProperties(args, properties); status = run(args, communicator); } - catch (Ice.LocalException ex) + catch(Ice.LocalException ex) { ex.printStackTrace(); status = 1; @@ -199,7 +199,7 @@ public class Client { communicator.destroy(); } - catch (Ice.LocalException ex) + catch(Ice.LocalException ex) { ex.printStackTrace(); status = 1; |