diff options
author | Adam Frisby | 2008-04-21 07:09:17 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-21 07:09:17 +0000 |
commit | fef3b3689492dea63693c964bcdbec9f5137eb5e (patch) | |
tree | 7791eef001d85d3e1de863a68f26ff9434d062ca /OpenSim/Framework/AgentInventory.cs | |
parent | * Terrain Module code has been reformatted to comply with guidelines. (diff) | |
download | opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.zip opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.gz opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.bz2 opensim-SC_OLD-fef3b3689492dea63693c964bcdbec9f5137eb5e.tar.xz |
* Optimised using statements and namespace references across entire project (this took a while to run).
Diffstat (limited to 'OpenSim/Framework/AgentInventory.cs')
-rw-r--r-- | OpenSim/Framework/AgentInventory.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Framework/AgentInventory.cs b/OpenSim/Framework/AgentInventory.cs index 916cdf8..ef3ad16 100644 --- a/OpenSim/Framework/AgentInventory.cs +++ b/OpenSim/Framework/AgentInventory.cs | |||
@@ -25,6 +25,7 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
28 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
29 | using libsecondlife; | 30 | using libsecondlife; |
30 | using libsecondlife.Packets; | 31 | using libsecondlife.Packets; |
@@ -230,7 +231,7 @@ namespace OpenSim.Framework | |||
230 | public LLUUID CreatorID; | 231 | public LLUUID CreatorID; |
231 | public sbyte InvType; | 232 | public sbyte InvType; |
232 | public sbyte Type; | 233 | public sbyte Type; |
233 | public string Name = System.String.Empty; | 234 | public string Name = String.Empty; |
234 | public string Description; | 235 | public string Description; |
235 | 236 | ||
236 | public InventoryItem() | 237 | public InventoryItem() |
@@ -241,7 +242,7 @@ namespace OpenSim.Framework | |||
241 | public string ExportString() | 242 | public string ExportString() |
242 | { | 243 | { |
243 | string typ = "notecard"; | 244 | string typ = "notecard"; |
244 | string result = System.String.Empty; | 245 | string result = String.Empty; |
245 | result += "\tinv_object\t0\n\t{\n"; | 246 | result += "\tinv_object\t0\n\t{\n"; |
246 | result += "\t\tobj_id\t%s\n"; | 247 | result += "\t\tobj_id\t%s\n"; |
247 | result += "\t\tparent_id\t" + ItemID.ToString() + "\n"; | 248 | result += "\t\tparent_id\t" + ItemID.ToString() + "\n"; |