stephenh    2002/07/25 00:29:47

  Modified:    src/java/org/apache/torque/om NumberKey.java
  Log:
  Crap, I missed the return. Returning super.hashCode() when getValue() == null 
intrigues me...haven't quite decided whether it makes sense or not.
  
  Revision  Changes    Path
  1.7       +2 -2      
jakarta-turbine-torque/src/java/org/apache/torque/om/NumberKey.java
  
  Index: NumberKey.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-torque/src/java/org/apache/torque/om/NumberKey.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- NumberKey.java    25 Jul 2002 07:28:16 -0000      1.6
  +++ NumberKey.java    25 Jul 2002 07:29:47 -0000      1.7
  @@ -190,7 +190,7 @@
       {
           if (getValue() == null)
           {
  -            super.hashCode();
  +            return super.hashCode();
           }
           else
           {
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to