From 389edd674869eeb90d57e76d3ad662a93ba68d9e Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Mon, 31 Mar 2014 17:36:47 +0100 Subject: [PATCH] DATACMNS-484 - Fix grammar in exception message of RepositoryFactorySupport. Original pull request: #78. --- .../data/repository/core/support/RepositoryFactorySupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java b/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java index eaa746588..d3af0f90c 100644 --- a/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java +++ b/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java @@ -293,7 +293,7 @@ public abstract class RepositoryFactorySupport implements BeanClassLoaderAware { if (queryMethods.iterator().hasNext()) { throw new IllegalStateException("You have defined query method in the repository but " - + "you don't have no query lookup strategy defined. The " + + "you don't have any query lookup strategy defined. The " + "infrastructure apparently does not support query methods!"); }