diff options
author | Justin Clark-Casey (justincc) | 2012-02-11 00:10:59 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-02-11 00:10:59 +0000 |
commit | e7fd7322095d518ccd7b446cf5c0683ef8009793 (patch) | |
tree | 937dcdaf2b23eae42e9214145cbd9b36a5a4bc55 /OpenSim/Region/Framework/Scenes/ScenePresence.cs | |
parent | minor: Remove warning from RegionInfo due to repeated config.GetString() call... (diff) | |
download | opensim-SC_OLD-e7fd7322095d518ccd7b446cf5c0683ef8009793.zip opensim-SC_OLD-e7fd7322095d518ccd7b446cf5c0683ef8009793.tar.gz opensim-SC_OLD-e7fd7322095d518ccd7b446cf5c0683ef8009793.tar.bz2 opensim-SC_OLD-e7fd7322095d518ccd7b446cf5c0683ef8009793.tar.xz |
Make ScenePresence.MovementFlag a private only settable value to reduce complexity of code analysis
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 5c56150..77f7b32 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -291,13 +291,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
291 | /// </summary> | 291 | /// </summary> |
292 | public PhysicsActor PhysicsActor { get; private set; } | 292 | public PhysicsActor PhysicsActor { get; private set; } |
293 | 293 | ||
294 | private byte m_movementflag; | 294 | /// <summary> |
295 | 295 | /// Record user movement inputs. | |
296 | public byte MovementFlag | 296 | /// </summary> |
297 | { | 297 | public byte MovementFlag { get; private set; } |
298 | set { m_movementflag = value; } | ||
299 | get { return m_movementflag; } | ||
300 | } | ||
301 | 298 | ||
302 | private bool m_updateflag; | 299 | private bool m_updateflag; |
303 | 300 | ||