[
https://issues.apache.org/jira/browse/TAP5-1425?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Howard M. Lewis Ship closed TAP5-1425.
--------------------------------------
Resolution: Fixed
Fix Version/s: 5.3
Assignee: Massimo Lusetti
Discovered this fixed bug while reviewing 5.4 bugs; this was fixed somewhere in
the 5.3 timeframe.
> AssetSource.getUnlocalizedAsset() should throw an exception if asset is found
> but does not actually exist
> ---------------------------------------------------------------------------------------------------------
>
> Key: TAP5-1425
> URL: https://issues.apache.org/jira/browse/TAP5-1425
> Project: Tapestry 5
> Issue Type: Bug
> Components: tapestry-core
> Affects Versions: 5.3, 5.2
> Reporter: Howard M. Lewis Ship
> Assignee: Massimo Lusetti
> Priority: Minor
> Fix For: 5.3
>
>
> From the JavaDoc:
> /**
> * Find an asset but does not attempt to localize it. If the path has no
> prefix, it is assumed to
> * be on the classpath.
> *
> * @since 5.2.0
> * @throws RuntimeException
> * if the asset can not be found
> */
> Asset getUnlocalizedAsset(String path);
> I discoverred that I can pass an invalid path name and it works.
> private Asset getLocalizedAssetFromResource(Resource unlocalized, Locale
> locale)
> {
> Resource localized = locale == null ? unlocalized :
> unlocalized.forLocale(locale);
> if (localized == null)
> throw new
> RuntimeException(ServicesMessages.assetDoesNotExist(unlocalized));
> return getAssetForResource(localized);
> }
> That should be:
> if (localized == null || ! localized.exists())
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira