You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/11/07 09:50:04 UTC

[sling-org-apache-sling-jcr-repoinit] 19/29: Fix NPE in activate

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to annotated tag org.apache.sling.jcr.repoinit-1.1.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-repoinit.git

commit 0556772fb270bf9ce68d9e3ddbe282a7c9a7ada7
Author: Carsten Ziegeler <cz...@apache.org>
AuthorDate: Wed Nov 9 07:28:45 2016 +0000

    Fix NPE in activate
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/repoinit@1768851 13f79535-47bb-0310-9956-ffa450edef68
---
 .../java/org/apache/sling/jcr/repoinit/impl/RepositoryInitializer.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/jcr/repoinit/impl/RepositoryInitializer.java b/src/main/java/org/apache/sling/jcr/repoinit/impl/RepositoryInitializer.java
index 40fd13f..f4abbe3 100644
--- a/src/main/java/org/apache/sling/jcr/repoinit/impl/RepositoryInitializer.java
+++ b/src/main/java/org/apache/sling/jcr/repoinit/impl/RepositoryInitializer.java
@@ -79,7 +79,7 @@ public class RepositoryInitializer implements SlingRepositoryInitializer {
 
     @Override
     public String toString() {
-        return getClass().getSimpleName() + ", references=" + Arrays.asList(config.references());
+        return getClass().getSimpleName() + ", references=" + Arrays.toString(config.references());
     }
 
     @Override

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.