Fix the AsUuid thingy
parent
ebb8111f6c
commit
2cded6d369
OpenSim/Framework
|
@ -71,16 +71,16 @@ namespace OpenSim.Framework
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
UUID uuid = UUID.Zero;
|
return m_creatorIdAsUuid;
|
||||||
UUID.TryParse(m_creatorId, out uuid);
|
|
||||||
return uuid;
|
|
||||||
}
|
}
|
||||||
private set
|
private set
|
||||||
{
|
{
|
||||||
m_creatorId = value.ToString();
|
m_creatorIdAsUuid = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private UUID m_creatorIdAsUuid = UUID.Zero;
|
||||||
|
|
||||||
/// <value>
|
/// <value>
|
||||||
/// The description of the inventory item (must be less than 64 characters)
|
/// The description of the inventory item (must be less than 64 characters)
|
||||||
/// </value>
|
/// </value>
|
||||||
|
|
Loading…
Reference in New Issue