You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by km...@apache.org on 2007/05/10 00:48:25 UTC

svn commit: r536701 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/EncryptionKeyTest.java

Author: kmarsden
Date: Wed May  9 15:48:25 2007
New Revision: 536701

URL: http://svn.apache.org/viewvc?view=rev&rev=536701
Log:
DERBY-2555 Remove use of doPrivileged in EncryptionKeyTest
patch 2 - Remove some debug statements added to the test.


Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/EncryptionKeyTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/EncryptionKeyTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/EncryptionKeyTest.java?view=diff&rev=536701&r1=536700&r2=536701
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/EncryptionKeyTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/EncryptionKeyTest.java Wed May  9 15:48:25 2007
@@ -577,15 +577,8 @@
         str.append(";");
         JDBCDataSource.setBeanProperty(
                 ds, "connectionAttributes", str.toString());
-        try {
             return ds.getConnection();
-        } catch (SQLException se)
-        {
-            SQLException sen = se.getNextException();
-            sen.printStackTrace();
-            throw se;
-            
-        }
+        
     }
 
     /**