[Webfunds-commits] java/webfunds/sox MailReply.java
Ian Grigg
iang@cypherpunks.ai
Sun, 11 Jun 2000 18:28:14 -0400 (AST)
iang 00/06/11 18:28:14
Modified: webfunds/sox MailReply.java
Log:
cleanup of example only
Revision Changes Path
1.14 +1 -8 java/webfunds/sox/MailReply.java
Index: MailReply.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/sox/MailReply.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- MailReply.java 2000/06/10 20:17:56 1.13
+++ MailReply.java 2000/06/11 22:28:13 1.14
@@ -1,5 +1,5 @@
/*
- * $Id: MailReply.java,v 1.13 2000/06/10 20:17:56 iang Exp $
+ * $Id: MailReply.java,v 1.14 2000/06/11 22:28:13 iang Exp $
*
* Copyright (c) Systemics Ltd 1995-1999 on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -149,34 +149,27 @@
if (obj == null || !(obj instanceof MailReply))
return false;
-System.err.println(" eq 1");
MailReply other = (MailReply)obj;
-System.err.println(" eq 2");
if (!super.equals(other))
return false;
MailItem[] others = other.getMailItems();
-System.err.println(" eq 3");
if (others == null && (mails != null))
return false ;
-System.err.println(" eq 4");
if (mails == null && (others != null))
return false ;
-System.err.println(" eq 5");
if (others.length != mails.length)
return false ;
-System.err.println(" eq 6");
for (int i = 0; i < mails.length; i++)
{
if (!mails[i].equals(others[i]))
return false ;
}
-System.err.println(" eq 7");
return true;
}