Fixes the broken build of the previous commit.

mysql-performance
Diva Canto 2009-12-23 17:10:37 -08:00
parent 53386b6f1f
commit 908992a105
1 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Text.RegularExpressions;
using System.Threading;
@ -314,7 +315,7 @@ namespace OpenSim.Region.Framework.Scenes
// If it can be parsed as a UUID, it is an asset ID
UUID uuid;
if (UUID.Parse(id, out uuid))
if (UUID.TryParse(id, out uuid))
assetUuids[uuid] = 1;
}
}