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/25 12:45:41 UTC

svn commit: r829548 - /commons/proper/lang/trunk/src/test/org/apache/commons/lang/concurrent/ConcurrentUtilsTest.java

Author: sebb
Date: Sun Oct 25 11:45:41 2009
New Revision: 829548

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

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

Modified: commons/proper/lang/trunk/src/test/org/apache/commons/lang/concurrent/ConcurrentUtilsTest.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/org/apache/commons/lang/concurrent/ConcurrentUtilsTest.java?rev=829548&r1=829547&r2=829548&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/test/org/apache/commons/lang/concurrent/ConcurrentUtilsTest.java (original)
+++ commons/proper/lang/trunk/src/test/org/apache/commons/lang/concurrent/ConcurrentUtilsTest.java Sun Oct 25 11:45:41 2009
@@ -142,7 +142,7 @@
     /**
      * Tests handleCause() if the cause is a checked exception.
      */
-    public void testHandleCauseChecked() throws ConcurrentException {
+    public void testHandleCauseChecked() {
         Exception ex = new Exception("Test");
         try {
             ConcurrentUtils.handleCause(new ExecutionException(ex));