diff options
author | Justin Clark-Casey (justincc) | 2011-05-14 02:42:47 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-05-14 02:42:47 +0100 |
commit | 340e3ccf16a59512f86f9c5d08bda3ca8179f53e (patch) | |
tree | c15f67e131dfed0dd527160093ede7158ce482f3 /OpenSim/Framework | |
parent | simplify code in llGetParcelMaxPrims() to use existing code in LandObject rat... (diff) | |
download | opensim-SC_OLD-340e3ccf16a59512f86f9c5d08bda3ca8179f53e.zip opensim-SC_OLD-340e3ccf16a59512f86f9c5d08bda3ca8179f53e.tar.gz opensim-SC_OLD-340e3ccf16a59512f86f9c5d08bda3ca8179f53e.tar.bz2 opensim-SC_OLD-340e3ccf16a59512f86f9c5d08bda3ca8179f53e.tar.xz |
refactor: remove thisObject argument from ILandObject.Get*MaxPrimCount() instance methods since it didn't make sense to use anything other than the instance themselves.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/ILandObject.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/ILandObject.cs b/OpenSim/Framework/ILandObject.cs index 5a55b02..0316944 100644 --- a/OpenSim/Framework/ILandObject.cs +++ b/OpenSim/Framework/ILandObject.cs | |||
@@ -35,8 +35,8 @@ namespace OpenSim.Framework | |||
35 | 35 | ||
36 | public interface ILandObject | 36 | public interface ILandObject |
37 | { | 37 | { |
38 | int GetParcelMaxPrimCount(ILandObject thisObject); | 38 | int GetParcelMaxPrimCount(); |
39 | int GetSimulatorMaxPrimCount(ILandObject thisObject); | 39 | int GetSimulatorMaxPrimCount(); |
40 | int GetPrimsFree(); | 40 | int GetPrimsFree(); |
41 | 41 | ||
42 | LandData LandData { get; set; } | 42 | LandData LandData { get; set; } |