diff options
author | lbsa71 | 2007-12-27 21:41:48 +0000 |
---|---|---|
committer | lbsa71 | 2007-12-27 21:41:48 +0000 |
commit | efd90b56b761219af6425b1c7a2cdd3b6ffb4de2 (patch) | |
tree | bf5b897e1e3c13211e3e2fc61d30508b94c928c0 /OpenSim/Framework/Data/GridData.cs | |
parent | * removed always true if (diff) | |
download | opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.zip opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.gz opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.bz2 opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.xz |
* Optimized usings
* shortened references
* Removed redundant 'this'
* Normalized EOF
Diffstat (limited to 'OpenSim/Framework/Data/GridData.cs')
-rw-r--r-- | OpenSim/Framework/Data/GridData.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Framework/Data/GridData.cs b/OpenSim/Framework/Data/GridData.cs index 7864dda..6072600 100644 --- a/OpenSim/Framework/Data/GridData.cs +++ b/OpenSim/Framework/Data/GridData.cs | |||
@@ -25,8 +25,8 @@ | |||
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 libsecondlife; | ||
29 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using libsecondlife; | ||
30 | 30 | ||
31 | namespace OpenSim.Framework.Data | 31 | namespace OpenSim.Framework.Data |
32 | { | 32 | { |
@@ -35,10 +35,12 @@ namespace OpenSim.Framework.Data | |||
35 | public LLUUID AvatarID; | 35 | public LLUUID AvatarID; |
36 | public string firstName; | 36 | public string firstName; |
37 | public string lastName; | 37 | public string lastName; |
38 | |||
38 | public AvatarPickerAvatar() | 39 | public AvatarPickerAvatar() |
39 | { | 40 | { |
40 | } | 41 | } |
41 | } | 42 | } |
43 | |||
42 | public enum DataResponse | 44 | public enum DataResponse |
43 | { | 45 | { |
44 | RESPONSE_OK, | 46 | RESPONSE_OK, |
@@ -78,6 +80,7 @@ namespace OpenSim.Framework.Data | |||
78 | 80 | ||
79 | 81 | ||
80 | List<AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query); | 82 | List<AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query); |
83 | |||
81 | /// <summary> | 84 | /// <summary> |
82 | /// Authenticates a sim by use of its recv key. | 85 | /// Authenticates a sim by use of its recv key. |
83 | /// WARNING: Insecure | 86 | /// WARNING: Insecure |
@@ -119,4 +122,4 @@ namespace OpenSim.Framework.Data | |||
119 | 122 | ||
120 | ReservationData GetReservationAtPoint(uint x, uint y); | 123 | ReservationData GetReservationAtPoint(uint x, uint y); |
121 | } | 124 | } |
122 | } | 125 | } \ No newline at end of file |