very useless changes

This commit is contained in:
UbitUmarov
2025-06-25 02:22:28 +01:00
parent f1d84b7866
commit 0d71b6d871
78 changed files with 123 additions and 223 deletions

View File

@@ -118,7 +118,7 @@ namespace OpenSim.Services.MapImageService
public bool RemoveMapTile(int x, int y, UUID scopeID, out string reason)
{
reason = String.Empty;
reason = string.Empty;
string fileName = GetFileName(1, x, y, scopeID);
lock (m_Sync)
@@ -212,13 +212,13 @@ namespace OpenSim.Services.MapImageService
return File.ReadAllBytes(fullName);
}
}
catch
{
format = ".jpg";
return m_WaterJPEGBytes is null ? Array.Empty<byte>() : m_WaterJPEGBytes;
}
}
#endregion
private string GetFileName(int zoomLevel, int x, int y, UUID scopeID)