diff options
author | SignpostMarv | 2012-11-04 11:13:03 +0000 |
---|---|---|
committer | Diva Canto | 2012-11-09 14:20:24 -0800 |
commit | 5bff7415441d2e3943229a759ef963d45e165ceb (patch) | |
tree | 9a82302218a45696f29d341b3d5f92843ef99ec0 /OpenSim | |
parent | minor: Adjust method doc on IXInventoryData MoveItem() and MoveFolder() to ma... (diff) | |
download | opensim-SC_OLD-5bff7415441d2e3943229a759ef963d45e165ceb.zip opensim-SC_OLD-5bff7415441d2e3943229a759ef963d45e165ceb.tar.gz opensim-SC_OLD-5bff7415441d2e3943229a759ef963d45e165ceb.tar.bz2 opensim-SC_OLD-5bff7415441d2e3943229a759ef963d45e165ceb.tar.xz |
marking IRegionModule interface as obsolete via System.ObsoleteAttribute, intentionally triggering a bunch of warnings in compiler output in hopes of encouraging other developers to refactor built-in modules when they have free time.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IRegionModule.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IRegionModule.cs b/OpenSim/Region/Framework/Interfaces/IRegionModule.cs index 2bb0c75..aacc26b 100644 --- a/OpenSim/Region/Framework/Interfaces/IRegionModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IRegionModule.cs | |||
@@ -24,6 +24,7 @@ | |||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | using System; | ||
27 | 28 | ||
28 | using Nini.Config; | 29 | using Nini.Config; |
29 | using OpenSim.Region.Framework.Scenes; | 30 | using OpenSim.Region.Framework.Scenes; |
@@ -33,6 +34,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
33 | /// <summary> | 34 | /// <summary> |
34 | /// DEPRECATED! Use INonSharedRegionModule or ISharedRegionModule instead | 35 | /// DEPRECATED! Use INonSharedRegionModule or ISharedRegionModule instead |
35 | /// </summary> | 36 | /// </summary> |
37 | [Obsolete("Use INonSharedRegionModule or ISharedRegionModule instead", false)] | ||
36 | public interface IRegionModule | 38 | public interface IRegionModule |
37 | { | 39 | { |
38 | /// <summary> | 40 | /// <summary> |