User: fleury
Date: 00/08/17 12:08:34
Modified: src/main/org/jboss/util FastKey.java
Log:
Man yesterday was not my day at all...
I think this is complete now :(
Revision Changes Path
1.6 +8 -2 jboss/src/main/org/jboss/util/FastKey.java
Index: FastKey.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/FastKey.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- FastKey.java 2000/08/17 17:43:27 1.5
+++ FastKey.java 2000/08/17 19:08:34 1.6
@@ -16,7 +16,7 @@
*
* @see org.jboss.ejb.plugins.NoPassivationInstanceCache.java
* @author <a href="[EMAIL PROTECTED]">Marc Fleury</a>
-* @version $Revision: 1.5 $
+* @version $Revision: 1.6 $
*/
public class FastKey
implements java.io.Externalizable
@@ -42,7 +42,9 @@
// Constructors --------------------------------------------------
- // Public --------------------------------------------------------
+ public FastKey() {
+ // For externalization
+ }
public FastKey(Object id) {
@@ -50,6 +52,10 @@
this.id = id;
}
+
+
+ // Public --------------------------------------------------------
+
// Z implementation ----------------------------------------------