lightning-core/src/main/java/org/apache/directmemory/lightning/internal/CheatPropertyDescriptor.java [185:224]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            return false;
        }
        if ( internalSignature == null )
        {
            if ( other.internalSignature != null )
            {
                return false;
            }
        }
        else if ( !internalSignature.equals( other.internalSignature ) )
        {
            return false;
        }
        if ( name == null )
        {
            if ( other.name != null )
            {
                return false;
            }
        }
        else if ( !name.equals( other.name ) )
        {
            return false;
        }
        if ( propertyName == null )
        {
            if ( other.propertyName != null )
            {
                return false;
            }
        }
        else if ( !propertyName.equals( other.propertyName ) )
        {
            return false;
        }
        return true;
    }

    @Override
    public String toString()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lightning-core/src/main/java/org/apache/directmemory/lightning/internal/beans/InternalPropertyDescriptor.java [193:232]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            return false;
        }
        if ( internalSignature == null )
        {
            if ( other.internalSignature != null )
            {
                return false;
            }
        }
        else if ( !internalSignature.equals( other.internalSignature ) )
        {
            return false;
        }
        if ( name == null )
        {
            if ( other.name != null )
            {
                return false;
            }
        }
        else if ( !name.equals( other.name ) )
        {
            return false;
        }
        if ( propertyName == null )
        {
            if ( other.propertyName != null )
            {
                return false;
            }
        }
        else if ( !propertyName.equals( other.propertyName ) )
        {
            return false;
        }
        return true;
    }

    @Override
    public String toString()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



