|
From: <pe...@us...> - 2003-11-21 04:43:09
|
Update of /cvsroot/neuclear/neuclear-pay/src/test/org/neuclear/asset/controllers/currency
In directory sc8-pr-cvs1:/tmp/cvs-serv10286/src/test/org/neuclear/asset/controllers/currency
Modified Files:
CurrencyTests.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: CurrencyTests.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-pay/src/test/org/neuclear/asset/controllers/currency/CurrencyTests.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** CurrencyTests.java 10 Nov 2003 17:42:08 -0000 1.2
--- CurrencyTests.java 21 Nov 2003 04:43:04 -0000 1.3
***************
*** 21,26 ****
* Time: 6:05:04 PM
*/
! public class CurrencyTests extends TestCase {
! public CurrencyTests(String s) throws SQLException, IOException, LowlevelLedgerException, BookExistsException, LedgerCreationException, ConfigurationException {
super(s);
// proc = CurrencyController.getInstance();
--- 21,26 ----
* Time: 6:05:04 PM
*/
! public final class CurrencyTests extends TestCase {
! public CurrencyTests(final String s) throws SQLException, IOException, LowlevelLedgerException, BookExistsException, LedgerCreationException, ConfigurationException {
super(s);
// proc = CurrencyController.getInstance();
|