remove some more mono compiler warnings
parent
190bdc8a2e
commit
e5904c3883
|
@ -60,22 +60,22 @@ namespace OpenSim.Region.CoreModules.Agent.TextureDownload
|
||||||
/// currently handle properly as far as I know). However, this situation should be handled in a more
|
/// currently handle properly as far as I know). However, this situation should be handled in a more
|
||||||
/// sophisticated way.
|
/// sophisticated way.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private static readonly int MAX_ALLOWED_TEXTURE_REQUESTS = 5;
|
// private static readonly int MAX_ALLOWED_TEXTURE_REQUESTS = 5;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// XXX Also going to limit requests for found textures.
|
/// XXX Also going to limit requests for found textures.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly IRequestLimitStrategy<UUID> foundTextureLimitStrategy
|
// private readonly IRequestLimitStrategy<UUID> foundTextureLimitStrategy
|
||||||
= new RepeatLimitStrategy<UUID>(MAX_ALLOWED_TEXTURE_REQUESTS);
|
// = new RepeatLimitStrategy<UUID>(MAX_ALLOWED_TEXTURE_REQUESTS);
|
||||||
|
|
||||||
private readonly IClientAPI m_client;
|
// private readonly IClientAPI m_client;
|
||||||
private readonly Scene m_scene;
|
private readonly Scene m_scene;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Texture Senders are placed in this queue once they have received their texture from the asset
|
/// Texture Senders are placed in this queue once they have received their texture from the asset
|
||||||
/// cache. Another module actually invokes the send.
|
/// cache. Another module actually invokes the send.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly OpenSim.Framework.BlockingQueue<ITextureSender> m_sharedSendersQueue;
|
// private readonly OpenSim.Framework.BlockingQueue<ITextureSender> m_sharedSendersQueue;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Holds texture senders before they have received the appropriate texture from the asset cache.
|
/// Holds texture senders before they have received the appropriate texture from the asset cache.
|
||||||
|
@ -95,7 +95,7 @@ namespace OpenSim.Region.CoreModules.Agent.TextureDownload
|
||||||
{
|
{
|
||||||
// m_client = client;
|
// m_client = client;
|
||||||
m_scene = scene;
|
m_scene = scene;
|
||||||
m_sharedSendersQueue = sharedQueue;
|
// m_sharedSendersQueue = sharedQueue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -9032,7 +9032,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
Match m = r.Match(url);
|
Match m = r.Match(url);
|
||||||
if (m.Success) {
|
if (m.Success) {
|
||||||
for (int i = 1; i < gnums.Length; i++) {
|
for (int i = 1; i < gnums.Length; i++) {
|
||||||
System.Text.RegularExpressions.Group g = m.Groups[gnums[i]];
|
//System.Text.RegularExpressions.Group g = m.Groups[gnums[i]];
|
||||||
//CaptureCollection cc = g.Captures;
|
//CaptureCollection cc = g.Captures;
|
||||||
}
|
}
|
||||||
if (m.Groups.Count == 5) {
|
if (m.Groups.Count == 5) {
|
||||||
|
|
Loading…
Reference in New Issue