Title: [1165] trunk/qdox/src/test/java/com/thoughtworks/qdox/model/util/SerializationUtils.java: reduce noise of serialization test
Revision
1165
Author
rfscholte
Date
2011-04-13 15:39:20 -0500 (Wed, 13 Apr 2011)

Log Message

reduce noise of serialization test

Modified Paths


Diff

Modified: trunk/qdox/src/test/java/com/thoughtworks/qdox/model/util/SerializationUtils.java (1164 => 1165)

--- trunk/qdox/src/test/java/com/thoughtworks/qdox/model/util/SerializationUtils.java	2011-04-13 20:27:12 UTC (rev 1164)
+++ trunk/qdox/src/test/java/com/thoughtworks/qdox/model/util/SerializationUtils.java	2011-04-13 20:39:20 UTC (rev 1165)
@@ -16,7 +16,6 @@
             oos.close();
             return buffer.toByteArray();
         } catch (IOException e) {
-            e.printStackTrace();
             throw new RuntimeException("error writing to byte-array!", e);
         }
     }
@@ -28,7 +27,6 @@
             ObjectInputStream ois = new ObjectInputStream(input);
             return ois.readObject();
         } catch (IOException e) {
-            e.printStackTrace();
             throw new RuntimeException("error reading from byte-array!", e);
         }
     }


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to