minor: remove mono compiler warnings

This commit is contained in:
Justin Clark-Casey (justincc)
2010-09-03 21:28:57 +01:00
parent 71c0fc10df
commit 8d2e8b7d5c
3 changed files with 8 additions and 8 deletions

View File

@@ -54,12 +54,12 @@ namespace OpenSim.Region.CoreModules.Framework.EventQueue
};
}
private static byte[] uintToByteArray(uint uIntValue)
{
byte[] result = new byte[4];
Utils.UIntToBytesBig(uIntValue, result, 0);
return result;
}
// private static byte[] uintToByteArray(uint uIntValue)
// {
// byte[] result = new byte[4];
// Utils.UIntToBytesBig(uIntValue, result, 0);
// return result;
// }
public static OSD buildEvent(string eventName, OSD eventBody)
{