From 6d774339d9c51c1635e96cd92f57a8bc13021e5f Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Fri, 29 Feb 2008 10:51:40 +0000 Subject: More compiler warning cleanup. Removed verbose flag, since it doesn't do anything any more. --- OpenSim/Region/Application/OpenSimMain.cs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'OpenSim/Region/Application/OpenSimMain.cs') diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index 6e89143..bdefd0f 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs @@ -78,7 +78,6 @@ namespace OpenSim protected List m_udpServers = new List(); protected List m_regionData = new List(); - private bool m_verbose; private bool m_physicalPrim; private bool m_permissions = false; @@ -173,7 +172,6 @@ namespace OpenSim { config.Set("gridmode", false); config.Set("physics", "basicphysics"); - config.Set("verbose", true); config.Set("physical_prim", true); config.Set("see_into_this_sim_from_neighbor", true); config.Set("serverside_object_permissions", false); @@ -241,9 +239,6 @@ namespace OpenSim m_physicsEngine = startupConfig.GetString("physics", "basicphysics"); m_meshEngineName = startupConfig.GetString("meshing", "ZeroMesher"); - // TODO: since log4net changes, verbose flag doesn't do anything - m_verbose = startupConfig.GetBoolean("verbose", true); - m_physicalPrim = startupConfig.GetBoolean("physical_prim", true); m_see_into_region_from_neighbor = startupConfig.GetBoolean("see_into_this_sim_from_neighbor", true); -- cgit v1.1