diff options
author | John Hurliman | 2010-09-11 22:02:34 -0700 |
---|---|---|
committer | John Hurliman | 2010-09-11 22:02:34 -0700 |
commit | e2544584ad57a30def4f6b13eeaafe90eb81fe9e (patch) | |
tree | bd6ae66c21194b8f12bcc0dbe5babcdf10ab4f6b /OpenSim | |
parent | Fixed the naming mess around data connectors for simulation data (diff) | |
download | opensim-SC_OLD-e2544584ad57a30def4f6b13eeaafe90eb81fe9e.zip opensim-SC_OLD-e2544584ad57a30def4f6b13eeaafe90eb81fe9e.tar.gz opensim-SC_OLD-e2544584ad57a30def4f6b13eeaafe90eb81fe9e.tar.bz2 opensim-SC_OLD-e2544584ad57a30def4f6b13eeaafe90eb81fe9e.tar.xz |
Changed all string references of "IRegionDataStore" to "ISimulationDataStore"
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Data/Null/NullSimulationData.cs | 1 | ||||
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteSimulationData.cs | 2 | ||||
-rw-r--r-- | OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Framework/StorageManager.cs | 4 | ||||
-rw-r--r-- | OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs | 1 |
5 files changed, 2 insertions, 8 deletions
diff --git a/OpenSim/Data/Null/NullSimulationData.cs b/OpenSim/Data/Null/NullSimulationData.cs index 9c7da8e..34d3a4e 100644 --- a/OpenSim/Data/Null/NullSimulationData.cs +++ b/OpenSim/Data/Null/NullSimulationData.cs | |||
@@ -73,7 +73,6 @@ namespace OpenSim.Data.Null | |||
73 | { | 73 | { |
74 | } | 74 | } |
75 | 75 | ||
76 | // see IRegionDatastore | ||
77 | public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items) | 76 | public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items) |
78 | { | 77 | { |
79 | } | 78 | } |
diff --git a/OpenSim/Data/SQLite/SQLiteSimulationData.cs b/OpenSim/Data/SQLite/SQLiteSimulationData.cs index 55c27b2..1820f78 100644 --- a/OpenSim/Data/SQLite/SQLiteSimulationData.cs +++ b/OpenSim/Data/SQLite/SQLiteSimulationData.cs | |||
@@ -79,7 +79,6 @@ namespace OpenSim.Data.SQLite | |||
79 | **********************************************************************/ | 79 | **********************************************************************/ |
80 | 80 | ||
81 | /// <summary> | 81 | /// <summary> |
82 | /// See IRegionDataStore | ||
83 | /// <list type="bullet"> | 82 | /// <list type="bullet"> |
84 | /// <item>Initialises RegionData Interface</item> | 83 | /// <item>Initialises RegionData Interface</item> |
85 | /// <item>Loads and initialises a new SQLite connection and maintains it.</item> | 84 | /// <item>Loads and initialises a new SQLite connection and maintains it.</item> |
@@ -1951,7 +1950,6 @@ namespace OpenSim.Data.SQLite | |||
1951 | } | 1950 | } |
1952 | 1951 | ||
1953 | /// <summary> | 1952 | /// <summary> |
1954 | /// see IRegionDatastore | ||
1955 | /// </summary> | 1953 | /// </summary> |
1956 | /// <param name="primID"></param> | 1954 | /// <param name="primID"></param> |
1957 | /// <param name="items"></param> | 1955 | /// <param name="items"></param> |
diff --git a/OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs b/OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs index 878117e..e9c6aa5 100644 --- a/OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs +++ b/OpenSim/Data/SQLiteLegacy/SQLiteSimulationData.cs | |||
@@ -78,7 +78,6 @@ namespace OpenSim.Data.SQLiteLegacy | |||
78 | **********************************************************************/ | 78 | **********************************************************************/ |
79 | 79 | ||
80 | /// <summary> | 80 | /// <summary> |
81 | /// See IRegionDataStore | ||
82 | /// <list type="bullet"> | 81 | /// <list type="bullet"> |
83 | /// <item>Initialises RegionData Interface</item> | 82 | /// <item>Initialises RegionData Interface</item> |
84 | /// <item>Loads and initialises a new SQLite connection and maintains it.</item> | 83 | /// <item>Loads and initialises a new SQLite connection and maintains it.</item> |
@@ -1888,7 +1887,6 @@ namespace OpenSim.Data.SQLiteLegacy | |||
1888 | } | 1887 | } |
1889 | 1888 | ||
1890 | /// <summary> | 1889 | /// <summary> |
1891 | /// see IRegionDatastore | ||
1892 | /// </summary> | 1890 | /// </summary> |
1893 | /// <param name="primID"></param> | 1891 | /// <param name="primID"></param> |
1894 | /// <param name="items"></param> | 1892 | /// <param name="items"></param> |
diff --git a/OpenSim/Region/Framework/StorageManager.cs b/OpenSim/Region/Framework/StorageManager.cs index 06caa18..47db2b3 100644 --- a/OpenSim/Region/Framework/StorageManager.cs +++ b/OpenSim/Region/Framework/StorageManager.cs | |||
@@ -64,7 +64,7 @@ namespace OpenSim.Region.Framework | |||
64 | { | 64 | { |
65 | if (pluginType.IsPublic) | 65 | if (pluginType.IsPublic) |
66 | { | 66 | { |
67 | Type typeInterface = pluginType.GetInterface("IRegionDataStore", true); | 67 | Type typeInterface = pluginType.GetInterface("ISimulationDataStore", true); |
68 | 68 | ||
69 | if (typeInterface != null) | 69 | if (typeInterface != null) |
70 | { | 70 | { |
@@ -74,7 +74,7 @@ namespace OpenSim.Region.Framework | |||
74 | 74 | ||
75 | m_dataStore = plug; | 75 | m_dataStore = plug; |
76 | 76 | ||
77 | m_log.Info("[DATASTORE]: Added IRegionDataStore Interface"); | 77 | m_log.Info("[DATASTORE]: Added ISimulationDataStore Interface"); |
78 | } | 78 | } |
79 | 79 | ||
80 | typeInterface = pluginType.GetInterface("IEstateDataStore", true); | 80 | typeInterface = pluginType.GetInterface("IEstateDataStore", true); |
diff --git a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs index e95d26a..315d405 100644 --- a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs +++ b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs | |||
@@ -114,7 +114,6 @@ namespace OpenSim.Data.Null | |||
114 | } | 114 | } |
115 | } | 115 | } |
116 | 116 | ||
117 | // see IRegionDatastore | ||
118 | public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items) | 117 | public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items) |
119 | { | 118 | { |
120 | m_primItems[primID] = items; | 119 | m_primItems[primID] = items; |