[Webfunds-commits] java/webfunds/client Transaction.java
Jeroen C. van Gelderen
gelderen@cypherpunks.ai
Thu, 15 Mar 2001 15:25:47 -0400 (AST)
gelderen 01/03/15 15:25:47
Modified: webfunds/client Transaction.java
Log:
Comment out a check that currently breaks cancels. I intend to re-enable
this at some point in the future.
Revision Changes Path
1.15 +5 -2 java/webfunds/client/Transaction.java
Index: Transaction.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/client/Transaction.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- Transaction.java 2001/03/13 23:50:17 1.14
+++ Transaction.java 2001/03/15 19:25:46 1.15
@@ -1,5 +1,5 @@
/*
- * $Id: Transaction.java,v 1.14 2001/03/13 23:50:17 gelderen Exp $
+ * $Id: Transaction.java,v 1.15 2001/03/15 19:25:46 gelderen Exp $
*
* Copyright (c) Systemics Ltd 1995-2001 on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -14,7 +14,7 @@
* WebFunds' idea of a transaction. Transactions from other payment systems
* such as SOX are mapped to instances of this class.
*
- * @version $Revision: 1.14 $
+ * @version $Revision: 1.15 $
*/
public final class Transaction {
@@ -64,8 +64,11 @@
if( contract == null )
throw new IllegalArgumentException("contract: " + contract);
+ /*
+ * XXX: the tight check breaks cancels, revisit this later... -JCvG
if( date == null )
throw new IllegalArgumentException("date: " + date);
+ */
this.type = type;