in tiles-request-portlet-wildcard/src/main/java/org/apache/tiles/request/portlet/wildcard/WildcardPortletApplicationContext.java [72:79]
public ApplicationResource getResource(String localePath) {
ApplicationResource retValue = null;
Collection<ApplicationResource> resourceSet = getResources(localePath);
if (resourceSet != null && !resourceSet.isEmpty()) {
retValue = resourceSet.iterator().next();
}
return retValue;
}