Remove some obsolete files from MSSQL. Fix a missing constructor arg that

was introdiced by the latest jhurlipatch
This commit is contained in:
Melanie
2010-02-24 16:00:06 +00:00
parent 2fa5694ec9
commit 92029dc171
3 changed files with 2 additions and 1821 deletions

View File

@@ -123,7 +123,8 @@ namespace OpenSim.Data.MSSQL
AssetBase asset = new AssetBase(
new UUID((Guid)reader["id"]),
(string)reader["name"],
Convert.ToSByte(reader["assetType"])
Convert.ToSByte(reader["assetType"]),
String.Empty
);
// Region Main
asset.Description = (string)reader["description"];