cristof commented on code in PR #366:
URL: https://github.com/apache/myfaces/pull/366#discussion_r1017812955


##########
api/src/main/java/jakarta/faces/component/UIComponent.java:
##########
@@ -1842,4 +1841,41 @@ public void setTransient(boolean newTransientValue)
             }
         }
     }
+
+    private Resource getLocalizedCompositeResource(String resourceName, String 
libraryName, FacesContext context) 
+    {
+       List<String> localizedPaths = getLocalizedPropertiesPaths(resourceName, 
context);
+       Resource resource = null;
+       
+       for (String path_: localizedPaths) {
+               resource = 
context.getApplication().getResourceHandler().createResource(path_, 
libraryName);
+               if (resource != null)

Review Comment:
   Sorry about that. Fixed style in all four pull requests.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@myfaces.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to