aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/IRegionData.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/IRegionData.cs b/OpenSim/Data/IRegionData.cs
index 71dd525..c5201ea 100644
--- a/OpenSim/Data/IRegionData.cs
+++ b/OpenSim/Data/IRegionData.cs
@@ -45,7 +45,7 @@ namespace OpenSim.Data
45 /// <summary> 45 /// <summary>
46 /// An interface for connecting to the authentication datastore 46 /// An interface for connecting to the authentication datastore
47 /// </summary> 47 /// </summary>
48 public interface IRegionData 48 public interface IRegionData
49 { 49 {
50 RegionData Get(UUID regionID, UUID ScopeID); 50 RegionData Get(UUID regionID, UUID ScopeID);
51 List<RegionData> Get(string regionName, UUID ScopeID); 51 List<RegionData> Get(string regionName, UUID ScopeID);
@@ -57,5 +57,6 @@ namespace OpenSim.Data
57 bool SetDataItem(UUID principalID, string item, string value); 57 bool SetDataItem(UUID principalID, string item, string value);
58 58
59 bool Delete(UUID regionID); 59 bool Delete(UUID regionID);
60
60 } 61 }
61} 62}