in tiles-request-portlet-wildcard/src/main/java/org/apache/tiles/request/portlet/wildcard/WildcardPortletApplicationContext.java [83:90]
public ApplicationResource getResource(ApplicationResource base, Locale locale) {
ApplicationResource retValue = null;
Collection<ApplicationResource> resourceSet = getResources(base.getLocalePath(locale));
if (resourceSet != null && !resourceSet.isEmpty()) {
retValue = resourceSet.iterator().next();
}
return retValue;
}