added some debugging for tracing where asset code isn't working with sqlite

This commit is contained in:
Sean Dague
2007-09-10 13:34:20 +00:00
parent ffe9c9374a
commit a1be7f4be5
4 changed files with 328 additions and 305 deletions

View File

@@ -35,15 +35,14 @@ namespace OpenSim.Framework.Types
public LLUUID FullID;
public sbyte Type;
public sbyte InvType;
public string Name;
public string Description;
public bool Local;
public bool Temporary;
public string Name = "";
public string Description = "";
public bool Local = false;
public bool Temporary = false;
public AssetBase()
{
Name = " ";
Description = " ";
}
}
}