|
From: <pe...@us...> - 2003-11-21 04:43:46
|
Update of /cvsroot/neuclear/neuclear-commons/src/test/org/neuclear/commons/sql
In directory sc8-pr-cvs1:/tmp/cvs-serv10533/src/test/org/neuclear/commons/sql
Modified Files:
SQLToolsTest.java
Log Message:
EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
Otherwise You will Finaliate.
Anything that can be final has been made final throughout everyting. We've used IDEA's Inspector tool to find all instance of variables that could be final.
This should hopefully make everything more stable (and secure).
Index: SQLToolsTest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-commons/src/test/org/neuclear/commons/sql/SQLToolsTest.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** SQLToolsTest.java 20 Sep 2003 23:18:12 -0000 1.1.1.1
--- SQLToolsTest.java 21 Nov 2003 04:43:42 -0000 1.2
***************
*** 18,27 ****
* To change this template use Options | File Templates.
*/
! public class SQLToolsTest extends TestCase {
! public SQLToolsTest(String string) {
super(string);
}
! public void testGetConnection() {
/*
try {
--- 18,27 ----
* To change this template use Options | File Templates.
*/
! public final class SQLToolsTest extends TestCase {
! public SQLToolsTest(final String string) {
super(string);
}
! public final void testGetConnection() {
/*
try {
|