fix compile putting back useless things until they are fully removed

0.9.1.0-post-fixes
UbitUmarov 2018-12-06 19:04:51 +00:00
parent 66f46c6846
commit 58b68aa5e9
1 changed files with 3 additions and 5 deletions

View File

@ -130,7 +130,6 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
RequestAssetMethod = m; RequestAssetMethod = m;
SetTerrain(terrain); SetTerrain(terrain);
SetWaterLevel(waterHeight); SetWaterLevel(waterHeight);
} }
public virtual void TriggerPhysicsBasedRestart() public virtual void TriggerPhysicsBasedRestart()
@ -310,8 +309,6 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
/// </returns> /// </returns>
public virtual Dictionary<string, float> GetStats() { return null; } public virtual Dictionary<string, float> GetStats() { return null; }
public abstract void GetResults();
public abstract void SetTerrain(float[] heightMap); public abstract void SetTerrain(float[] heightMap);
public abstract void SetWaterLevel(float baseheight); public abstract void SetWaterLevel(float baseheight);
@ -322,8 +319,6 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
public abstract Dictionary<uint, float> GetTopColliders(); public abstract Dictionary<uint, float> GetTopColliders();
public abstract bool IsThreaded { get; }
/// <summary> /// <summary>
/// True if the physics plugin supports raycasting against the physics scene /// True if the physics plugin supports raycasting against the physics scene
/// </summary> /// </summary>
@ -409,5 +404,8 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
// A NOP if the extension thing is not implemented by the physics engine // A NOP if the extension thing is not implemented by the physics engine
return null; return null;
} }
public virtual void GetResults() { }
public virtual bool IsThreaded { get {return false;} }
} }
} }