[Webfunds-commits] java/webfunds/client WalletInterface.java
Jeroen C. van Gelderen
gelderen@cypherpunks.ai
Thu, 30 Nov 2000 12:41:04 -0400 (AST)
gelderen 00/11/30 12:41:04
Modified: webfunds/client WalletInterface.java
Log:
Remove redundant modifiers.
Spotted-by: Jikes
Revision Changes Path
1.40 +4 -4 java/webfunds/client/WalletInterface.java
Index: WalletInterface.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/client/WalletInterface.java,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- WalletInterface.java 2000/09/26 03:11:46 1.39
+++ WalletInterface.java 2000/11/30 16:41:04 1.40
@@ -1,5 +1,5 @@
/*
- * $Id: WalletInterface.java,v 1.39 2000/09/26 03:11:46 iang Exp $
+ * $Id: WalletInterface.java,v 1.40 2000/11/30 16:41:04 gelderen Exp $
*
* Copyright (c) 1995-2000 Systemics Ltd on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -68,9 +68,9 @@
/**
* adminEvent() codes.
*/
- public static final int CODE_SHUTDOWN = 0, // stop, clean up everything
- CODE_FREEZE = 1, // to persistant files, backup
- CODE_UNFREEZE = 2; // ok, carry on, backup done
+ int CODE_SHUTDOWN = 0, // stop, clean up everything
+ CODE_FREEZE = 1, // to persistant files, backup
+ CODE_UNFREEZE = 2; // ok, carry on, backup done
/**