aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-09-03 21:28:57 +0100
committerJustin Clark-Casey (justincc)2010-09-03 21:28:57 +0100
commit8d2e8b7d5c62cfd024ade222e27274e88c85d7d2 (patch)
tree17d571b1da8a50cdd75db09d7c123b63b186b734 /OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-8d2e8b7d5c62cfd024ade222e27274e88c85d7d2.zip
opensim-SC_OLD-8d2e8b7d5c62cfd024ade222e27274e88c85d7d2.tar.gz
opensim-SC_OLD-8d2e8b7d5c62cfd024ade222e27274e88c85d7d2.tar.bz2
opensim-SC_OLD-8d2e8b7d5c62cfd024ade222e27274e88c85d7d2.tar.xz
minor: remove mono compiler warnings
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs b/OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs
index 6294935..b62df18 100644
--- a/OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs
+++ b/OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs
@@ -54,12 +54,12 @@ namespace OpenSim.Region.CoreModules.Framework.EventQueue
54 }; 54 };
55 } 55 }
56 56
57 private static byte[] uintToByteArray(uint uIntValue) 57// private static byte[] uintToByteArray(uint uIntValue)
58 { 58// {
59 byte[] result = new byte[4]; 59// byte[] result = new byte[4];
60 Utils.UIntToBytesBig(uIntValue, result, 0); 60// Utils.UIntToBytesBig(uIntValue, result, 0);
61 return result; 61// return result;
62 } 62// }
63 63
64 public static OSD buildEvent(string eventName, OSD eventBody) 64 public static OSD buildEvent(string eventName, OSD eventBody)
65 { 65 {