Update svn properties. Squash a couple of warnings.

0.6.0-stable
Jeff Ames 2008-07-22 15:01:04 +00:00
parent 492b25362c
commit 186f83692c
3 changed files with 267 additions and 267 deletions

View File

@ -107,7 +107,7 @@ namespace OpenSim.Data.NHibernate
{
return session.Load(typeof(AssetBase), uuid) as AssetBase;
}
catch (ObjectNotFoundException e)
catch (ObjectNotFoundException)
{
m_log.ErrorFormat("[NHIBERNATE] no such asset {0}", uuid);
return null;
@ -125,7 +125,7 @@ namespace OpenSim.Data.NHibernate
{
AssetBase a = session.Load(typeof(AssetBase), asset.FullID) as AssetBase;
}
catch (ObjectNotFoundException e)
catch (ObjectNotFoundException)
{
session.Save(asset);
session.Flush();

View File

@ -125,7 +125,7 @@ namespace OpenSim.Data.NHibernate
session.Update(p);
m_log.InfoFormat("[NHIBERNATE] updating object {0}", p.UUID);
}
catch (ObjectNotFoundException e)
catch (ObjectNotFoundException)
{
m_log.InfoFormat("[NHIBERNATE] saving object {0}", p.UUID);
session.Save(p);
@ -145,7 +145,7 @@ namespace OpenSim.Data.NHibernate
session.Update(t);
session.Flush();
}
catch (ObjectNotFoundException e)
catch (ObjectNotFoundException)
{
session.Save(t);
session.Flush();