aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLiteLegacy
diff options
context:
space:
mode:
authorMelanie2010-05-09 18:03:57 +0100
committerMelanie2010-05-09 18:03:57 +0100
commit6a3e1734e67b4d6d4a9144e4f86658297eef11a6 (patch)
tree7132abbe44017ebe97034c1a4149fad743ce03a7 /OpenSim/Data/SQLiteLegacy
parentMerge branch 'master' into careminster-presence-refactor (diff)
parentAdd Delete handler to SQLite (NG) (diff)
downloadopensim-SC_OLD-6a3e1734e67b4d6d4a9144e4f86658297eef11a6.zip
opensim-SC_OLD-6a3e1734e67b4d6d4a9144e4f86658297eef11a6.tar.gz
opensim-SC_OLD-6a3e1734e67b4d6d4a9144e4f86658297eef11a6.tar.bz2
opensim-SC_OLD-6a3e1734e67b4d6d4a9144e4f86658297eef11a6.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Data/SQLiteLegacy')
-rw-r--r--OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs b/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs
index 0d63dea..df50902 100644
--- a/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs
+++ b/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs
@@ -338,6 +338,10 @@ namespace OpenSim.Data.SQLiteLegacy
338 get { return "SQLite Asset storage engine"; } 338 get { return "SQLite Asset storage engine"; }
339 } 339 }
340 340
341 public override bool Delete(string id)
342 {
343 return false;
344 }
341 #endregion 345 #endregion
342 } 346 }
343} \ No newline at end of file 347}