* minor: remove some mono compiler warnings

0.6.5-rc1
Justin Clarke Casey 2009-04-29 18:11:41 +00:00
parent 23aa85b75d
commit c320dca2db
6 changed files with 6 additions and 13 deletions

View File

@ -62,7 +62,7 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController
if (pos == -1) m_name = id;
else m_name = id.Substring(pos + 1);
ExtensionNodeList list = AddinManager.GetExtensionNodes("/OpenSim/RegionModules");
//ExtensionNodeList list = AddinManager.GetExtensionNodes("/OpenSim/RegionModules");
// load all the (new) region-module classes
foreach (TypeExtensionNode node in AddinManager.GetExtensionNodes("/OpenSim/RegionModules"))
{

View File

@ -61,7 +61,6 @@ namespace OpenSim.Data.SQLite
private const string AvatarPickerAndSQL = "select * from users where username like :username and surname like :surname";
private const string AvatarPickerOrSQL = "select * from users where username like :username or surname like :surname";
private Dictionary<UUID, AvatarAppearance> aplist = new Dictionary<UUID, AvatarAppearance>();
private DataSet ds;
private SqliteDataAdapter da;
private SqliteDataAdapter daf;
@ -162,7 +161,6 @@ namespace OpenSim.Data.SQLite
daa.Dispose();
daa = null;
}
aplist = null;
}
/// <summary>
@ -659,7 +657,6 @@ namespace OpenSim.Data.SQLite
AvatarAppearance aa = new AvatarAppearance(user);
//try {
aa.Owner = user;
//aplist[user] = appearance;
DataTable aap = ds.Tables["avatarappearance"];
lock (ds)
@ -726,7 +723,6 @@ namespace OpenSim.Data.SQLite
}
}
// aa = aplist[user];
// m_log.Info("[APPEARANCE] Found appearance for " + user.ToString() + aa.ToString());
// } catch (KeyNotFoundException) {
// m_log.InfoFormat("[APPEARANCE] No appearance found for {0}", user.ToString());
@ -742,7 +738,6 @@ namespace OpenSim.Data.SQLite
override public void UpdateUserAppearance(UUID user, AvatarAppearance appearance)
{
appearance.Owner = user;
//aplist[user] = appearance;
DataTable aap = ds.Tables["avatarappearance"];
lock (ds)
{

View File

@ -251,7 +251,6 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests
= scene.CommsManager.UserProfileCacheService.GetUserDetails(userFirstName, userLastName);
InventoryItemBase foundItem = userInfo.RootFolder.FindItemByPath(itemName);
// Currently, creator and ownership both revert to the loader
Assert.That(foundItem.CreatorId, Is.EqualTo(user2Uuid.ToString()));
Assert.That(foundItem.Owner, Is.EqualTo(userUuid));

View File

@ -39,8 +39,7 @@ namespace OpenSim.Region.CoreModules.Hypergrid
{
public class HGWorldMapModule : WorldMapModule
{
private static readonly ILog m_log =
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
//private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
#region INonSharedRegionModule Members

View File

@ -59,7 +59,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
private static readonly ILog m_log =
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private const bool UseProxy = false;
private bool UseProxy = false;
// Capability string prefixes
private static readonly string m_parcelVoiceInfoRequestPath = "0007/";
@ -598,7 +598,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
string auth_token = (string)requestBody["auth_token"];
string[] auth_tokenvals = auth_token.Split(':');
string username = auth_tokenvals[0];
//string username = auth_tokenvals[0];
int strcount = 0;
string[] ids = new string[strcount];
@ -667,7 +667,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
Hashtable requestBody = parseRequestBody((string)request["body"]);
string pwd = (string) requestBody["pwd"];
//string pwd = (string) requestBody["pwd"];
string userid = (string) requestBody["userid"];
string avatarName = string.Empty;

View File

@ -228,7 +228,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
public GroupRecord GetGroupRecord(UUID GroupID, string GroupName)
{
Hashtable param = new Hashtable();
if ((GroupID != null) && (GroupID != UUID.Zero))
if (GroupID != UUID.Zero)
{
param["GroupID"] = GroupID.ToString();
}