diff options
author | Justin Clark-Casey (justincc) | 2012-12-06 01:36:30 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-12-06 01:36:30 +0000 |
commit | 68daeee4342757340177a015a30b78c54674fafc (patch) | |
tree | 8fdd5683b788b8fddb0be4d5bb22914e8a4de959 /OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs | |
parent | Allow GetTexture calls with no second value in the range header (e.g. just 53... (diff) | |
download | opensim-SC_OLD-68daeee4342757340177a015a30b78c54674fafc.zip opensim-SC_OLD-68daeee4342757340177a015a30b78c54674fafc.tar.gz opensim-SC_OLD-68daeee4342757340177a015a30b78c54674fafc.tar.bz2 opensim-SC_OLD-68daeee4342757340177a015a30b78c54674fafc.tar.xz |
minor: change method doc on GetTextureHandler.TryParseRange(), mainly to trigger another build
Diffstat (limited to 'OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs')
-rw-r--r-- | OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs b/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs index 6e9094a..b497fde 100644 --- a/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs +++ b/OpenSim/Capabilities/Handlers/GetTexture/GetTextureHandler.cs | |||
@@ -315,8 +315,8 @@ namespace OpenSim.Capabilities.Handlers | |||
315 | /// for start.</remarks> | 315 | /// for start.</remarks> |
316 | /// <returns></returns> | 316 | /// <returns></returns> |
317 | /// <param name='header'></param> | 317 | /// <param name='header'></param> |
318 | /// <param name='start'>Undefined if the parse fails.</param> | 318 | /// <param name='start'>Start of the range. Undefined if this was not a number.</param> |
319 | /// <param name='end'>Undefined if the parse fails.</param> | 319 | /// <param name='end'>End of the range. Will be -1 if no end specified. Undefined if there was a raw string but this was not a number.</param> |
320 | private bool TryParseRange(string header, out int start, out int end) | 320 | private bool TryParseRange(string header, out int start, out int end) |
321 | { | 321 | { |
322 | start = end = 0; | 322 | start = end = 0; |