ExpectedEvent.CheckOther C# (CSharp) Method

CheckOther() protected method

protected CheckOther ( EventHistory, actualEvent ) : bool
actualEvent EventHistory,
return bool
    protected virtual bool CheckOther(EventHistory actualEvent)
    {
        // TODO: Make this less sucky.  Come up with something that's clean and easy
        // for various event types...
        if((otherData != null) && (otherData != actualEvent.otherData)) return true;

        return false;
    }