From c11e047410fdabb5c53ebdb7cec637a177254aeb Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 15 May 2009 20:20:55 +0000 Subject: * Resolve bug where save oar would never complete if any assets were missing --- OpenSim/Framework/AssetBase.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'OpenSim/Framework/AssetBase.cs') diff --git a/OpenSim/Framework/AssetBase.cs b/OpenSim/Framework/AssetBase.cs index 4e43cb7..0551533 100644 --- a/OpenSim/Framework/AssetBase.cs +++ b/OpenSim/Framework/AssetBase.cs @@ -150,6 +150,11 @@ namespace OpenSim.Framework get { return m_metadata; } set { m_metadata = value; } } + + public override string ToString() + { + return FullID.ToString(); + } } public class AssetMetadata -- cgit v1.1