diff options
author | Justin Clark-Casey (justincc) | 2011-08-24 22:34:26 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-08-24 22:34:26 +0100 |
commit | 6d4432f44009d7f7f3e52c56e8ccc994494ec529 (patch) | |
tree | 197fa7cf8ae1c4f3a07b9598fb242519a80ef55a /OpenSim/Region/Framework/Scenes/EntityBase.cs | |
parent | extend initial rez regression test to check that attachment is phantom (diff) | |
download | opensim-SC-6d4432f44009d7f7f3e52c56e8ccc994494ec529.zip opensim-SC-6d4432f44009d7f7f3e52c56e8ccc994494ec529.tar.gz opensim-SC-6d4432f44009d7f7f3e52c56e8ccc994494ec529.tar.bz2 opensim-SC-6d4432f44009d7f7f3e52c56e8ccc994494ec529.tar.xz |
refactor: simplify EntityBase.IsDeleted property
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/EntityBase.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/EntityBase.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/OpenSim/Region/Framework/Scenes/EntityBase.cs b/OpenSim/Region/Framework/Scenes/EntityBase.cs index 6fd38e5..213431a 100644 --- a/OpenSim/Region/Framework/Scenes/EntityBase.cs +++ b/OpenSim/Region/Framework/Scenes/EntityBase.cs | |||
@@ -66,12 +66,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
66 | /// <summary> | 66 | /// <summary> |
67 | /// Signals whether this entity was in a scene but has since been removed from it. | 67 | /// Signals whether this entity was in a scene but has since been removed from it. |
68 | /// </summary> | 68 | /// </summary> |
69 | public bool IsDeleted | 69 | public bool IsDeleted { get; protected internal set; } |
70 | { | ||
71 | get { return m_isDeleted; } | ||
72 | set { m_isDeleted = value; } | ||
73 | } | ||
74 | protected bool m_isDeleted; | ||
75 | 70 | ||
76 | protected Vector3 m_pos; | 71 | protected Vector3 m_pos; |
77 | 72 | ||