aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/RegionManager.cs
diff options
context:
space:
mode:
authorMW2007-08-29 15:39:57 +0000
committerMW2007-08-29 15:39:57 +0000
commit36fba5e7e29667544e84541d9d116cda98655f0b (patch)
treee4c1b43dcfee9d639d1dc1a540ec923437798ae2 /OpenSim/Region/Environment/RegionManager.cs
parentAttempt to cut down how often objects are backed up to the database. (diff)
downloadopensim-SC_OLD-36fba5e7e29667544e84541d9d116cda98655f0b.zip
opensim-SC_OLD-36fba5e7e29667544e84541d9d116cda98655f0b.tar.gz
opensim-SC_OLD-36fba5e7e29667544e84541d9d116cda98655f0b.tar.bz2
opensim-SC_OLD-36fba5e7e29667544e84541d9d116cda98655f0b.tar.xz
Various small changes (some likely to be removed again soon)
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/RegionManager.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/RegionManager.cs b/OpenSim/Region/Environment/RegionManager.cs
index 0146b52..86a3626 100644
--- a/OpenSim/Region/Environment/RegionManager.cs
+++ b/OpenSim/Region/Environment/RegionManager.cs
@@ -9,7 +9,8 @@ using OpenSim.Region.Environment.LandManagement;
9 9
10namespace OpenSim.Region.Environment 10namespace OpenSim.Region.Environment
11{ 11{
12 public delegate TResult ModuleAPIMethod<TResult, TParam0, TParam1>(TParam0 param0, TParam1 param1); 12 public delegate TResult ModuleAPIMethod1<TResult, TParam0>(TParam0 param0);
13 public delegate TResult ModuleAPIMethod2<TResult, TParam0, TParam1>(TParam0 param0, TParam1 param1);
13 14
14 public class RegionManager 15 public class RegionManager
15 { 16 {