diff options
author | Justin Clarke Casey | 2009-01-06 18:26:27 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-01-06 18:26:27 +0000 |
commit | 31b0f07085eafd63039681b6c57aca289b9fe532 (patch) | |
tree | 5b0c08992715c98efdfd9bfe6cf54ea43aaa3321 /OpenSim/Framework | |
parent | * Fix build break - forgot that I had renamed an argument (diff) | |
download | opensim-SC_OLD-31b0f07085eafd63039681b6c57aca289b9fe532.zip opensim-SC_OLD-31b0f07085eafd63039681b6c57aca289b9fe532.tar.gz opensim-SC_OLD-31b0f07085eafd63039681b6c57aca289b9fe532.tar.bz2 opensim-SC_OLD-31b0f07085eafd63039681b6c57aca289b9fe532.tar.xz |
* Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with terminology used elsewhere
* Last build break was probably a Bamboo failure - hopefully this should succeed
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/Capabilities/CapsUtil.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs b/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs index fe9780d..829b4e5 100644 --- a/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs +++ b/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs | |||
@@ -45,7 +45,11 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
45 | return "/CAPS/" + capsObjectPath + "0000/"; | 45 | return "/CAPS/" + capsObjectPath + "0000/"; |
46 | } | 46 | } |
47 | 47 | ||
48 | public static string GetRandomCapsPath() | 48 | /// <summary> |
49 | /// Get a random CAPS object path component that will be used as the identifying part of all future CAPS requests | ||
50 | /// </summary> | ||
51 | /// <returns></returns> | ||
52 | public static string GetRandomCapsObjectPath() | ||
49 | { | 53 | { |
50 | UUID caps = UUID.Random(); | 54 | UUID caps = UUID.Random(); |
51 | string capsPath = caps.ToString(); | 55 | string capsPath = caps.ToString(); |