aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorMelanie2009-12-24 00:45:53 +0000
committerMelanie2009-12-24 00:45:53 +0000
commite5e951d92cad324cf03f33627132c200a6492df6 (patch)
tree2be629c01be2adb69b0f573fadc5d05adb715142 /OpenSim/Region/Framework
parentMerge branch 'master' into careminster (diff)
parentFixes the broken build of the previous commit. (diff)
downloadopensim-SC_OLD-e5e951d92cad324cf03f33627132c200a6492df6.zip
opensim-SC_OLD-e5e951d92cad324cf03f33627132c200a6492df6.tar.gz
opensim-SC_OLD-e5e951d92cad324cf03f33627132c200a6492df6.tar.bz2
opensim-SC_OLD-e5e951d92cad324cf03f33627132c200a6492df6.tar.xz
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r--OpenSim/Region/Framework/Scenes/UuidGatherer.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/UuidGatherer.cs b/OpenSim/Region/Framework/Scenes/UuidGatherer.cs
index 7e3c192..3edb677 100644
--- a/OpenSim/Region/Framework/Scenes/UuidGatherer.cs
+++ b/OpenSim/Region/Framework/Scenes/UuidGatherer.cs
@@ -27,6 +27,7 @@
27 27
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.IO;
30using System.Reflection; 31using System.Reflection;
31using System.Text.RegularExpressions; 32using System.Text.RegularExpressions;
32using System.Threading; 33using System.Threading;
@@ -314,7 +315,7 @@ namespace OpenSim.Region.Framework.Scenes
314 315
315 // If it can be parsed as a UUID, it is an asset ID 316 // If it can be parsed as a UUID, it is an asset ID
316 UUID uuid; 317 UUID uuid;
317 if (UUID.Parse(id, out uuid)) 318 if (UUID.TryParse(id, out uuid))
318 assetUuids[uuid] = 1; 319 assetUuids[uuid] = 1;
319 } 320 }
320 } 321 }