Implement the "delete" path for assets. Adds a new option to allow remote asset deletion in robust handler.

This commit is contained in:
Melanie
2010-05-09 17:56:52 +01:00
parent 9b22393cf3
commit 60357d3778
11 changed files with 60 additions and 6 deletions

View File

@@ -338,6 +338,11 @@ namespace OpenSim.Data.SQLite
get { return "SQLite Asset storage engine"; }
}
public override bool Delete(string id)
{
return false;
}
#endregion
}
}