|
From: <pe...@us...> - 2004-02-19 15:40:13
|
Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16429/src/java/org/neuclear/commons/test Modified Files: JunitTools.java Log Message: Various cleanups and corrections Index: JunitTools.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/test/JunitTools.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JunitTools.java 21 Nov 2003 04:43:42 -0000 1.3 --- JunitTools.java 19 Feb 2004 15:29:10 -0000 1.4 *************** *** 20,23 **** --- 20,26 ---- * $Id$ * $Log$ + * Revision 1.4 2004/02/19 15:29:10 pelle + * Various cleanups and corrections + * * Revision 1.3 2003/11/21 04:43:42 pelle * EncryptedFileStore now works. It uses the PBECipher with DES3 afair. *************** *** 25,29 **** * 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). ! * * Revision 1.2 2003/11/20 23:41:36 pelle * Getting all the tests to work in id --- 28,32 ---- * 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). ! * <p/> * Revision 1.2 2003/11/20 23:41:36 pelle * Getting all the tests to work in id *************** *** 31,35 **** * First version of EntityLedger that will use OFB's EntityEngine. This will allow us to support a vast amount databases without * writing SQL. (Yipee) ! * * Revision 1.1 2003/11/11 21:17:48 pelle * Further vital reshuffling. --- 34,38 ---- * First version of EntityLedger that will use OFB's EntityEngine. This will allow us to support a vast amount databases without * writing SQL. (Yipee) ! * <p/> * Revision 1.1 2003/11/11 21:17:48 pelle * Further vital reshuffling. *************** *** 44,47 **** --- 47,53 ---- */ public final class JunitTools { + private JunitTools() { + } + private static void loadKeys() throws CryptoException { try { |