Line 304 - 323
    /**
     * Compares the primary key of this instance with the key of another.
     *
     * @param bo The object to compare to.
     * @return   Whether the primary keys are equal.
     */
    public boolean equals(BaseObject bo)
   {
        if (this == bo)
        {
            return true;
        }
        else
        {
+            if( this.getPrimaryKey() == null || bo.getPrimaryKey() == null )
+                return false;
+            else
                return getPrimaryKey().equals(bo.getPrimaryKey());
        }
    }

Thanks,

youngho
���r��z۫n)ޢyb��(�H��� ��&N�����r��z۫n)ޡ���p��"�h��(�'���a���
0���j�!����o�����4�+-Š�x��oϮ��zk#�|(�H��� ��&

Reply via email to