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 <[email protected]> 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 "[email protected]" <[email protected]>.
