private IAsset findAsset(String path, String description)
{
IAsset asset = null;
if ( !HiveMind.isBlank(path) )
{
Location location = new DescribedLocation(new URLResource(path), description);
asset = _assetSource.findAsset(null, path, null, location);
}
return asset;
}