/[classpath]/classpath/java/rmi/MarshalledObject.java
ViewVC logotype

Diff of /classpath/java/rmi/MarshalledObject.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by cbj, Mon Mar 25 05:12:19 2002 UTC revision 1.4 by mark, Thu Oct 31 18:35:23 2002 UTC
# Line 78  public final class MarshalledObject Line 78  public final class MarshalledObject
78    {    {
79      if(obj == null || !(obj instanceof MarshalledObject) )      if(obj == null || !(obj instanceof MarshalledObject) )
80        return false;        return false;
81    
82        // hashCode even differs, don't do the time-consuming comparisons
83        if (obj.hashCode() != hash)
84          return false;
85            
86      MarshalledObject aobj = (MarshalledObject)obj;      MarshalledObject aobj = (MarshalledObject)obj;
87      if (objBytes == null || aobj.objBytes == null)      if (objBytes == null || aobj.objBytes == null)

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26