[Webfunds-commits] java/webfunds/client AccountInfo.java
Ian Grigg
iang@cypherpunks.ai
Mon, 26 Mar 2001 21:40:46 -0400 (AST)
iang 01/03/26 21:40:46
Modified: webfunds/client AccountInfo.java
Log:
got rid of old experimental code only
Revision Changes Path
1.25 +1 -22 java/webfunds/client/AccountInfo.java
Index: AccountInfo.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/client/AccountInfo.java,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- AccountInfo.java 2001/03/23 15:06:01 1.24
+++ AccountInfo.java 2001/03/27 01:40:46 1.25
@@ -1,5 +1,5 @@
/*
- * $Id: AccountInfo.java,v 1.24 2001/03/23 15:06:01 iang Exp $
+ * $Id: AccountInfo.java,v 1.25 2001/03/27 01:40:46 iang Exp $
*
* Copyright (c) Systemics Ltd 1995-1999 on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -120,27 +120,6 @@
////// Encoding ///////////////////////////////////
-/*
- public void writeExternal(ObjectOutput oo)
- throws IOException
- {
-System.err.println("Using writeExternal");
- oo.writeInt(2);
- Encodable.writeByteArray(oo, id);
- Encodable.writeString(oo, name);
- }
-
- public void readExternal(ObjectInput oi)
- throws IOException, ClassNotFoundException
- {
- int version = oi.readInt();
- if (version == 2)
- {
- id = Encodable.readByteArray(oi);
- name = Encodable.readString(oi);
- }
- }
-*/
public void encode(OutputStream os)
throws IOException