diff options
author | Jeff Ames | 2009-05-05 09:59:15 +0000 |
---|---|---|
committer | Jeff Ames | 2009-05-05 09:59:15 +0000 |
commit | 8ea12ad6c06ec9cce4bc470b40079546f18b61c8 (patch) | |
tree | 7040d88a5dc67e31495d4de802ce5bba8f9b1df8 /OpenSim/Framework/InventoryItemBase.cs | |
parent | Update svn properties. (diff) | |
download | opensim-SC_OLD-8ea12ad6c06ec9cce4bc470b40079546f18b61c8.zip opensim-SC_OLD-8ea12ad6c06ec9cce4bc470b40079546f18b61c8.tar.gz opensim-SC_OLD-8ea12ad6c06ec9cce4bc470b40079546f18b61c8.tar.bz2 opensim-SC_OLD-8ea12ad6c06ec9cce4bc470b40079546f18b61c8.tar.xz |
Add copyright header. Formatting cleanup. Ignore some generated files.
Diffstat (limited to 'OpenSim/Framework/InventoryItemBase.cs')
-rw-r--r-- | OpenSim/Framework/InventoryItemBase.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Framework/InventoryItemBase.cs b/OpenSim/Framework/InventoryItemBase.cs index 6c54924..74b504e 100644 --- a/OpenSim/Framework/InventoryItemBase.cs +++ b/OpenSim/Framework/InventoryItemBase.cs | |||
@@ -55,7 +55,7 @@ namespace OpenSim.Framework | |||
55 | { | 55 | { |
56 | m_creatorId = value; | 56 | m_creatorId = value; |
57 | UUID creatorIdAsUuid; | 57 | UUID creatorIdAsUuid; |
58 | 58 | ||
59 | // For now, all IDs are UUIDs | 59 | // For now, all IDs are UUIDs |
60 | UUID.TryParse(m_creatorId, out creatorIdAsUuid); | 60 | UUID.TryParse(m_creatorId, out creatorIdAsUuid); |
61 | CreatorIdAsUuid = creatorIdAsUuid; | 61 | CreatorIdAsUuid = creatorIdAsUuid; |
@@ -63,7 +63,7 @@ namespace OpenSim.Framework | |||
63 | } | 63 | } |
64 | 64 | ||
65 | private string m_creatorId = String.Empty; | 65 | private string m_creatorId = String.Empty; |
66 | 66 | ||
67 | /// <value> | 67 | /// <value> |
68 | /// The creator of this item expressed as a UUID | 68 | /// The creator of this item expressed as a UUID |
69 | /// </value> | 69 | /// </value> |
@@ -105,7 +105,7 @@ namespace OpenSim.Framework | |||
105 | /// | 105 | /// |
106 | /// </value> | 106 | /// </value> |
107 | public uint EveryOnePermissions; | 107 | public uint EveryOnePermissions; |
108 | 108 | ||
109 | /// <value> | 109 | /// <value> |
110 | /// | 110 | /// |
111 | /// </value> | 111 | /// </value> |
@@ -150,10 +150,10 @@ namespace OpenSim.Framework | |||
150 | /// | 150 | /// |
151 | /// </value> | 151 | /// </value> |
152 | public int CreationDate = (int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds; | 152 | public int CreationDate = (int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds; |
153 | 153 | ||
154 | public object Clone() | 154 | public object Clone() |
155 | { | 155 | { |
156 | return MemberwiseClone(); | 156 | return MemberwiseClone(); |
157 | } | 157 | } |
158 | } | 158 | } |
159 | } | 159 | } |