aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-12-28 16:30:00 +0000
committerTeravus Ovares2008-12-28 16:30:00 +0000
commit6eed7fcd1edcb3d4613982a51d6a21540a5cf67d (patch)
tree4d458b661854194d79a82587ec9849af13991ea5 /OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs
parent* Eliminate a possible null reference from the LLSDLogin method. (diff)
downloadopensim-SC_OLD-6eed7fcd1edcb3d4613982a51d6a21540a5cf67d.zip
opensim-SC_OLD-6eed7fcd1edcb3d4613982a51d6a21540a5cf67d.tar.gz
opensim-SC_OLD-6eed7fcd1edcb3d4613982a51d6a21540a5cf67d.tar.bz2
opensim-SC_OLD-6eed7fcd1edcb3d4613982a51d6a21540a5cf67d.tar.xz
* More NINJA Joint physics fixes from nlin.
fixes mantis #2874
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs b/OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs
index cfabeee..d080e9b 100644
--- a/OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs
+++ b/OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs
@@ -44,6 +44,6 @@ namespace OpenSim.Region.Physics.OdePlugin
44 return (jointID != IntPtr.Zero); 44 return (jointID != IntPtr.Zero);
45 } 45 }
46 } 46 }
47 public virtual IntPtr jointID { get { return IntPtr.Zero; } set { return; } } 47 public IntPtr jointID;
48 } 48 }
49} 49}