[java-identity-provider COMMIT] /trunk/idp-core/src/main/java/net/shibboleth/idp/service/ClassBasedServiceStrategy.java

noreply at shibboleth.net noreply at shibboleth.net
Sat Jul 19 00:42:54 EDT 2014


Author: scantor
Date: Sat Jul 19 00:42:54 2014
New Revision: 6313

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6313&view=rev
Log:
Log nit.

Modified:
    trunk/idp-core/src/main/java/net/shibboleth/idp/service/ClassBasedServiceStrategy.java

Modified: trunk/idp-core/src/main/java/net/shibboleth/idp/service/ClassBasedServiceStrategy.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-core/src/main/java/net/shibboleth/idp/service/ClassBasedServiceStrategy.java?rev=6313&r1=6312&r2=6313&view=diff
==============================================================================
--- trunk/idp-core/src/main/java/net/shibboleth/idp/service/ClassBasedServiceStrategy.java (original)
+++ trunk/idp-core/src/main/java/net/shibboleth/idp/service/ClassBasedServiceStrategy.java Sat Jul 19 00:42:54 2014
@@ -59,7 +59,7 @@
         final Collection<? extends ServiceableComponent> components = appContext.getBeansOfType(serviceClaz).values();
 
         if (components.size() == 0) {
-            throw new ServiceException("Reload did not produce any bean of type" + serviceClaz.getName());
+            throw new ServiceException("Reload did not produce any bean of type " + serviceClaz.getName());
         }
         if (components.size() > 1) {
             throw new ServiceException("Reload produced " + components.size() + " ServiceableComponents");



More information about the commits mailing list