You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sv...@apache.org on 2005/08/31 13:40:40 UTC

svn commit: r265021 - /myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/html/util/AddResource.java

Author: svieujot
Date: Wed Aug 31 04:40:37 2005
New Revision: 265021

URL: http://svn.apache.org/viewcvs?rev=265021&view=rev
Log:
AddResource : increase getReourceMappedPath visibility to avoid emulated synthetic accessor.

Modified:
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/html/util/AddResource.java

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/html/util/AddResource.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/html/util/AddResource.java?rev=265021&r1=265020&r2=265021&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/html/util/AddResource.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/html/util/AddResource.java Wed Aug 31 04:40:37 2005
@@ -143,7 +143,7 @@
                 contextPath);
     }
 
-    private static String getResourceMappedPath(String componentName, String resourceFileName, String contextPath){
+    protected static String getResourceMappedPath(String componentName, String resourceFileName, String contextPath){
        String returnString = RESOURCE_VIRTUAL_PATH+"/"+componentName+'/'+getCacheKey()+'/'+resourceFileName;
        return (contextPath == null) ? returnString : contextPath + returnString;
     }