You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/10/26 21:34:50 UTC

svn commit: r829941 - /commons/proper/lang/trunk/src/test/org/apache/commons/lang/SerializationUtilsTest.java

Author: sebb
Date: Mon Oct 26 20:34:50 2009
New Revision: 829941

URL: http://svn.apache.org/viewvc?rev=829941&view=rev
Log:
Drop unthrown Exception

Modified:
    commons/proper/lang/trunk/src/test/org/apache/commons/lang/SerializationUtilsTest.java

Modified: commons/proper/lang/trunk/src/test/org/apache/commons/lang/SerializationUtilsTest.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/org/apache/commons/lang/SerializationUtilsTest.java?rev=829941&r1=829940&r2=829941&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/test/org/apache/commons/lang/SerializationUtilsTest.java (original)
+++ commons/proper/lang/trunk/src/test/org/apache/commons/lang/SerializationUtilsTest.java Mon Oct 26 20:34:50 2009
@@ -390,7 +390,7 @@
 class ClassNotFoundSerialization implements Serializable
 {
 
-    private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException    {
+    private void readObject(ObjectInputStream in) throws ClassNotFoundException    {
         throw new ClassNotFoundException(SerializationUtilsTest.CLASS_NOT_FOUND_MESSAGE);
     }
 }