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/src/IceXML/StreamI.java | |
parent | comments (diff) | |
download | ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.bz2 ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.xz ice-364c465628189a4f3dee6eac54ff48825c48e681.zip |
removed spaces
Diffstat (limited to 'java/src/IceXML/StreamI.java')
-rw-r--r-- | java/src/IceXML/StreamI.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/java/src/IceXML/StreamI.java b/java/src/IceXML/StreamI.java index 156150a1723..789956ec69d 100644 --- a/java/src/IceXML/StreamI.java +++ b/java/src/IceXML/StreamI.java @@ -67,7 +67,7 @@ public class StreamI implements Ice.Stream { parser = factory.newDocumentBuilder(); } - catch (javax.xml.parsers.ParserConfigurationException ex) + catch(javax.xml.parsers.ParserConfigurationException ex) { logger.error("parser configuration error: " + ex.getMessage()); Ice.MarshalException e = new Ice.MarshalException(); @@ -91,12 +91,12 @@ public class StreamI implements Ice.Stream { _document = parser.parse(new org.xml.sax.InputSource(input)); } - catch (java.io.IOException ex) + catch(java.io.IOException ex) { logger.error("I/O error during parsing: " + ex.getMessage()); errorsOccurred = true; } - catch (org.xml.sax.SAXException ex) + catch(org.xml.sax.SAXException ex) { logger.error("parsing error: " + ex.getMessage()); errorsOccurred = true; @@ -366,7 +366,7 @@ public class StreamI implements Ice.Stream { i = Integer.parseInt(s); } - catch (NumberFormatException ex) + catch(NumberFormatException ex) { Ice.MarshalException e = new Ice.MarshalException(); e.initCause(ex); @@ -498,7 +498,7 @@ public class StreamI implements Ice.Stream { i = Short.parseShort(s); } - catch (NumberFormatException ex) + catch(NumberFormatException ex) { Ice.MarshalException e = new Ice.MarshalException(); e.initCause(ex); @@ -569,7 +569,7 @@ public class StreamI implements Ice.Stream { i = Integer.parseInt(s); } - catch (NumberFormatException ex) + catch(NumberFormatException ex) { Ice.MarshalException e = new Ice.MarshalException(); e.initCause(ex); @@ -640,7 +640,7 @@ public class StreamI implements Ice.Stream { i = Long.parseLong(s); } - catch (NumberFormatException ex) + catch(NumberFormatException ex) { Ice.MarshalException e = new Ice.MarshalException(); e.initCause(ex); @@ -711,7 +711,7 @@ public class StreamI implements Ice.Stream { i = Float.parseFloat(s); } - catch (NumberFormatException ex) + catch(NumberFormatException ex) { Ice.MarshalException e = new Ice.MarshalException(); e.initCause(ex); @@ -782,7 +782,7 @@ public class StreamI implements Ice.Stream { i = Double.parseDouble(s); } - catch (NumberFormatException ex) + catch(NumberFormatException ex) { Ice.MarshalException e = new Ice.MarshalException(); e.initCause(ex); @@ -1268,7 +1268,7 @@ public class StreamI implements Ice.Stream { return Integer.parseInt(attribute.getNodeValue()); } - catch (NumberFormatException ex) + catch(NumberFormatException ex) { throw new Ice.MarshalException(); } |