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

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

commit a62f635c3f77b9488d83095f16f6e6836b119a81
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Wed Feb 24 13:34:15 2010 +0000

    SLING-1409 : ignoreImportProviders doesn't allow multiple values.
    
    git-svn-id: 
https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/contentloader@915786 
13f79535-47bb-0310-9956-ffa450edef68
---
 .../java/org/apache/sling/jcr/contentloader/internal/PathEntry.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/sling/jcr/contentloader/internal/PathEntry.java 
b/src/main/java/org/apache/sling/jcr/contentloader/internal/PathEntry.java
index 64213c5..b9f4882 100644
--- a/src/main/java/org/apache/sling/jcr/contentloader/internal/PathEntry.java
+++ b/src/main/java/org/apache/sling/jcr/contentloader/internal/PathEntry.java
@@ -142,7 +142,7 @@ public class PathEntry {
         this.ignoreImportProviders = new ArrayList<String>();
         final String expandValue = 
entry.getDirectiveValue(IGNORE_IMPORT_PROVIDERS_DIRECTIVE);
         if ( expandValue != null && expandValue.length() > 0 ) {
-            final StringTokenizer st = new StringTokenizer(expandValue, ",");
+            final StringTokenizer st = new StringTokenizer(expandValue, "/");
             while ( st.hasMoreTokens() ) {
                 this.ignoreImportProviders.add(st.nextToken());
             }

-- 
To stop receiving notification emails like this one, please contact
"[email protected]" <[email protected]>.

Reply via email to