diff options
author | E. Allen Soard | 2011-05-07 11:41:22 -0700 |
---|---|---|
committer | Melanie | 2011-05-09 03:14:54 +0100 |
commit | 527b4e7c7ea9b77e4d3d4d9f55d65f019d8212bc (patch) | |
tree | 276abdf2c8142006a2daf7c68c37a0da26c06f9c | |
parent | Incremental patch to add config options to enable/disable the prim limits mod... (diff) | |
download | opensim-SC_OLD-527b4e7c7ea9b77e4d3d4d9f55d65f019d8212bc.zip opensim-SC_OLD-527b4e7c7ea9b77e4d3d4d9f55d65f019d8212bc.tar.gz opensim-SC_OLD-527b4e7c7ea9b77e4d3d4d9f55d65f019d8212bc.tar.bz2 opensim-SC_OLD-527b4e7c7ea9b77e4d3d4d9f55d65f019d8212bc.tar.xz |
Incremental - Just did some cleanup of comments and class name change to clean up from using BareBonesNonShared as a template.
-rw-r--r-- | OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs b/OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs index dd02bc7..5bafec3 100644 --- a/OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs +++ b/OpenSim/Region/OptionalModules/PrimLimitsModule/PrimLimitsModule.cs | |||
@@ -38,21 +38,13 @@ using OpenSim.Region.Framework.Scenes; | |||
38 | namespace OpenSim.Region.OptionalModules | 38 | namespace OpenSim.Region.OptionalModules |
39 | { | 39 | { |
40 | /// <summary> | 40 | /// <summary> |
41 | /// Simplest possible example of a non-shared region module. | 41 | /// Enables Prim limits for parcel. |
42 | /// </summary> | 42 | /// </summary> |
43 | /// <remarks> | 43 | /// <remarks> |
44 | /// This module is the simplest possible example of a non-shared region module (a module where each scene/region | 44 | /// This module selectivly enables parcel prim limits. |
45 | /// in the simulator has its own copy). If anybody wants to create a more complex example in the future then | ||
46 | /// please create a separate class. | ||
47 | /// | ||
48 | /// This module is not active by default. If you want to see it in action, | ||
49 | /// then just uncomment the line below starting with [Extension(Path... | ||
50 | /// | ||
51 | /// When the module is enabled it will print messages when it receives certain events to the screen and the log | ||
52 | /// file. | ||
53 | /// </remarks> | 45 | /// </remarks> |
54 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "PrimLimitsModule")] | 46 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "PrimLimitsModule")] |
55 | public class BareBonesNonSharedModule : INonSharedRegionModule | 47 | public class PrimLimitsModule : INonSharedRegionModule |
56 | { | 48 | { |
57 | protected IDialogModule m_dialogModule; | 49 | protected IDialogModule m_dialogModule; |
58 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 50 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |