Skip to content

error in Find method #14

@trelak

Description

@trelak

There is an invalid null check in Find method:

IS:
if (FindFunction == null)
{
return FindFunction(Data, keyValues);
}

SHOULD BE:
if (FindFundtion != null)
...

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions