Fix a few compiler warnings.

0.6.0-stable
Jeff Ames 2008-03-25 03:37:48 +00:00
parent a21112ccee
commit a7556af7de
3 changed files with 1 additions and 6 deletions

View File

@ -595,7 +595,7 @@ namespace OpenSim.Region.Environment.Modules.LandManagement
byteArray = new byte[LAND_BLOCKS_PER_PACKET];
}
}
catch (Exception e)
catch (Exception)
{
//m_log.Debug("[LAND]: Skipped Land checks because avatar is out of bounds: " + e.Message);
}

View File

@ -39,8 +39,6 @@ namespace OpenSim.Region.Environment.Modules.Terrain.FileLoaders
/// </summary>
class Terragen : ITerrainLoader
{
private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
#region ITerrainLoader Members
public ITerrainChannel LoadFile(string filename)

View File

@ -522,9 +522,6 @@ namespace OpenSim.Region.Physics.BulletXPlugin
{
actor.Move(timeStep);
}
foreach (BulletXPrim prim in _prims.Values)
{
}
}
private void ValidateHeightForAll()