[Webfunds-commits] java/webfunds/sox Value.java

Jeroen C. van Gelderen gelderen@cypherpunks.ai
Sat, 5 Aug 2000 12:12:52 -0400 (AST)


gelderen    00/08/05 12:12:51

  Modified:    webfunds/sox Value.java
  Log:
  Remove redundant public modifiers.

Revision  Changes    Path
1.2       +7 -7      java/webfunds/sox/Value.java

Index: Value.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/sox/Value.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Value.java	2000/08/05 13:05:39	1.1
+++ Value.java	2000/08/05 16:12:51	1.2
@@ -1,5 +1,5 @@
 /*
- * $Id: Value.java,v 1.1 2000/08/05 13:05:39 iang Exp $
+ * $Id: Value.java,v 1.2 2000/08/05 16:12:51 gelderen Exp $
  *
  * Copyright (c) Systemics Inc 1995-2000 on behalf of
  * the WebFunds Development Team.  All Rights Reserved.
@@ -25,18 +25,18 @@
      *         0:     sox 2 cheque only
      *         1:     AbstractPayment / PaymentFactory {cheque; token; wagner}
      */
-    public int getVersion();
+    int getVersion();
 
     /**
      *  The type of payment of this class.
      *  See PaymentFactory for types.
      */
-    public int getType();
+    int getType();
 
     /**
      *  The sub version of the subclass.
      */
-    public int getSubVersion();
+    int getSubVersion();
 
 
 
@@ -51,12 +51,12 @@
      *  In a SOX / practical context this turns out to be more or
      *  less mandatory, so included here?
      */
-    public ItemId getItem() ;
+    ItemId getItem() ;
 
     /**
      *  The quantity of the item to be transferred between accounts
      */
-    public long getQty() ;
+    long getQty() ;
 
     /**
      *  A description (can be anything, although very long lengths
@@ -65,6 +65,6 @@
      *  Note that it can be non-ascii, and non readable.  That's up to
      *  the client software to deal with.
      */
-    public byte[] getDesc() ;
+    byte[] getDesc() ;
 
 }