diff options
author | Diva Canto | 2014-12-30 07:59:09 -0800 |
---|---|---|
committer | Diva Canto | 2014-12-30 07:59:09 -0800 |
commit | 2506728e35f9db10970677f37380db05f2cb3f69 (patch) | |
tree | 274dd7bc82a18b17676cc6a02700d59e89ba80d7 /OpenSim | |
parent | WARNING: BREAKING CHANGES FOR REGION MODULE DEVELOPMENT. (diff) | |
parent | minor: correct sent -> set in TokenBucket.RequestedDripRate method doc (diff) | |
download | opensim-SC_OLD-2506728e35f9db10970677f37380db05f2cb3f69.zip opensim-SC_OLD-2506728e35f9db10970677f37380db05f2cb3f69.tar.gz opensim-SC_OLD-2506728e35f9db10970677f37380db05f2cb3f69.tar.bz2 opensim-SC_OLD-2506728e35f9db10970677f37380db05f2cb3f69.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/TokenBucket.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/TokenBucket.cs b/OpenSim/Region/ClientStack/Linden/UDP/TokenBucket.cs index d215595..4ca83ff 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/TokenBucket.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/TokenBucket.cs | |||
@@ -117,7 +117,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
117 | /// <seealso cref="RemoveTokens"/> is called, at the granularity of | 117 | /// <seealso cref="RemoveTokens"/> is called, at the granularity of |
118 | /// the system tick interval (typically around 15-22ms) | 118 | /// the system tick interval (typically around 15-22ms) |
119 | /// FIXME: It is extremely confusing to be able to set a RequestedDripRate of 0 and then receive a positive | 119 | /// FIXME: It is extremely confusing to be able to set a RequestedDripRate of 0 and then receive a positive |
120 | /// number on get if TotalDripRequest is sent. This also stops us being able to retrieve the fact that | 120 | /// number on get if TotalDripRequest is set. This also stops us being able to retrieve the fact that |
121 | /// RequestedDripRate is set to 0. Really, this should always return m_dripRate and then we can get | 121 | /// RequestedDripRate is set to 0. Really, this should always return m_dripRate and then we can get |
122 | /// (m_dripRate == 0 ? TotalDripRequest : m_dripRate) on some other properties. | 122 | /// (m_dripRate == 0 ? TotalDripRequest : m_dripRate) on some other properties. |
123 | /// </remarks> | 123 | /// </remarks> |