Author: cziegeler
Date: Mon Apr 27 20:03:43 2009
New Revision: 769136

URL: http://svn.apache.org/viewvc?rev=769136&view=rev
Log:
Correct typo in method name: several providers might be returned

Modified:
    
incubator/sling/trunk/bundles/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/JcrResourceResolver2.java

Modified: 
incubator/sling/trunk/bundles/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/JcrResourceResolver2.java
URL: 
http://svn.apache.org/viewvc/incubator/sling/trunk/bundles/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/JcrResourceResolver2.java?rev=769136&r1=769135&r2=769136&view=diff
==============================================================================
--- 
incubator/sling/trunk/bundles/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/JcrResourceResolver2.java
 (original)
+++ 
incubator/sling/trunk/bundles/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/JcrResourceResolver2.java
 Mon Apr 27 20:03:43 2009
@@ -109,7 +109,7 @@
     }
 
     public Resource resolve(HttpServletRequest request, String absPath) {
-        
+
         // make sure abspath is not null and is absolute
         if (absPath == null) {
             absPath = "/";
@@ -205,7 +205,7 @@
                 log.debug("resolve: Mapped path {} is a Star Resource",
                     realPath);
                 res = new StarResource(this, ensureAbsPath(realPath),
-                    factory.getJcrResourceTypeProvider());
+                    factory.getJcrResourceTypeProviders());
 
             } else
 


Reply via email to