From 0329df218ed19b8843e4bf2b891d234dd64357a7 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sat, 28 Jul 2012 18:37:22 +0200 Subject: [PATCH] Polish error message in BeanFactoryAnnotationUtils --- .../beans/factory/annotation/BeanFactoryAnnotationUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-beans/src/main/java/org/springframework/beans/factory/annotation/BeanFactoryAnnotationUtils.java b/spring-beans/src/main/java/org/springframework/beans/factory/annotation/BeanFactoryAnnotationUtils.java index 612aba8fa0..635b8cb174 100644 --- a/spring-beans/src/main/java/org/springframework/beans/factory/annotation/BeanFactoryAnnotationUtils.java +++ b/spring-beans/src/main/java/org/springframework/beans/factory/annotation/BeanFactoryAnnotationUtils.java @@ -95,7 +95,7 @@ public class BeanFactoryAnnotationUtils { else { throw new IllegalStateException("No matching " + beanType.getSimpleName() + " bean found for qualifier '" + qualifier + "' - neither qualifier " + - "match nor bean name match!"); + "nor bean name matches!"); } }