Skip to content

Commit

Permalink
fix for another failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Feb 10, 2011
1 parent 119841e commit f183507
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -77,6 +77,7 @@ public abstract class DynamicFinder implements FinderMethod, QueryBuildingFinder
methodExpressions.put(GreaterThan.class.getSimpleName(), GreaterThan.class.getConstructor(new Class[] { Class.class, String.class}));
methodExpressions.put(LessThan.class.getSimpleName(), LessThan.class.getConstructor(new Class[] { Class.class, String.class}));
methodExpressions.put(IsNull.class.getSimpleName(), IsNull.class.getConstructor(new Class[] { Class.class, String.class}));
methodExpressions.put(IsNotNull.class.getSimpleName(), IsNotNull.class.getConstructor(new Class[] { Class.class, String.class}));
methodExpressions.put(IsEmpty.class.getSimpleName(), IsEmpty.class.getConstructor(new Class[] { Class.class, String.class}));
methodExpressions.put(IsEmpty.class.getSimpleName(), IsEmpty.class.getConstructor(new Class[] { Class.class, String.class}));
methodExpressions.put(IsNotEmpty.class.getSimpleName(), IsNotEmpty.class.getConstructor(new Class[] { Class.class, String.class}));
Expand Down

0 comments on commit f183507

Please sign in to comment.