diff options
author | lbsa71 | 2007-10-05 10:14:42 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-05 10:14:42 +0000 |
commit | 5a6552120395611e66a88821ce848a06c9ea4720 (patch) | |
tree | d23780998986524b160ba97292022809efcff0bc /OpenSim/Framework/Data/UserProfileData.cs | |
parent | * ignored ScriptServer/bin (diff) | |
download | opensim-SC-5a6552120395611e66a88821ce848a06c9ea4720.zip opensim-SC-5a6552120395611e66a88821ce848a06c9ea4720.tar.gz opensim-SC-5a6552120395611e66a88821ce848a06c9ea4720.tar.bz2 opensim-SC-5a6552120395611e66a88821ce848a06c9ea4720.tar.xz |
== The "right name and place" commit ==
* Moved InventoryData to Framework.Types/InventoryItemBase.cs
* Moved UserData to Framework.Interfaces/IUserData.cs
* Moved UserProfileData to Framework/Types/UserProfileData.cs
* Deleted ass-backwards Framework dependency on Framework.Data (now it's the other way round)
* Changed some namespaces to reflect file structure
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/General/Types/UserProfileData.cs (renamed from OpenSim/Framework/Data/UserProfileData.cs) | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Framework/Data/UserProfileData.cs b/OpenSim/Framework/General/Types/UserProfileData.cs index 4fafe3f..20d8224 100644 --- a/OpenSim/Framework/Data/UserProfileData.cs +++ b/OpenSim/Framework/General/Types/UserProfileData.cs | |||
@@ -28,7 +28,7 @@ | |||
28 | using System; | 28 | using System; |
29 | using libsecondlife; | 29 | using libsecondlife; |
30 | 30 | ||
31 | namespace OpenSim.Framework.Data | 31 | namespace OpenSim.Framework.Types |
32 | { | 32 | { |
33 | /// <summary> | 33 | /// <summary> |
34 | /// Information about a particular user known to the userserver | 34 | /// Information about a particular user known to the userserver |
@@ -68,7 +68,6 @@ namespace OpenSim.Framework.Data | |||
68 | set { | 68 | set { |
69 | homeRegionX = (uint)(value >> 40); | 69 | homeRegionX = (uint)(value >> 40); |
70 | homeRegionY = (((uint)(value)) >> 8); | 70 | homeRegionY = (((uint)(value)) >> 8); |
71 | Console.WriteLine("HomeRegion => Incoming: " + value + ", Computed: " + homeRegion); | ||
72 | } | 71 | } |
73 | } | 72 | } |
74 | public uint homeRegionX; | 73 | public uint homeRegionX; |
@@ -189,4 +188,4 @@ namespace OpenSim.Framework.Data | |||
189 | /// </summary> | 188 | /// </summary> |
190 | public LLVector3 currentPos; | 189 | public LLVector3 currentPos; |
191 | } | 190 | } |
192 | } | 191 | } \ No newline at end of file |