aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/General/Types/UUID.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/General/Types/UUID.cs')
-rw-r--r--OpenSim/Framework/General/Types/UUID.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/General/Types/UUID.cs b/OpenSim/Framework/General/Types/UUID.cs
index 8d47c30..bb9206f 100644
--- a/OpenSim/Framework/General/Types/UUID.cs
+++ b/OpenSim/Framework/General/Types/UUID.cs
@@ -108,12 +108,12 @@ namespace OpenSim.Framework.Types
108 108
109 public static bool operator ==(UUID a, UUID b) 109 public static bool operator ==(UUID a, UUID b)
110 { 110 {
111 return a.Equals(b); 111 return a.llUUID.Equals(b.GetLLUUID());
112 } 112 }
113 113
114 public static bool operator !=(UUID a, UUID b) 114 public static bool operator !=(UUID a, UUID b)
115 { 115 {
116 return !a.Equals(b); 116 return !a.llUUID.Equals(b.GetLLUUID());
117 } 117 }
118 118
119 public static bool operator ==(UUID a, LLUUID b) 119 public static bool operator ==(UUID a, LLUUID b)