Various code linting changes

This commit is contained in:
Chomp
2025-01-18 11:49:21 +00:00
parent e926379b4a
commit 566deba507
23 changed files with 213 additions and 198 deletions
+3 -3
View File
@@ -43,12 +43,12 @@ public class LocationController
// keyed by _id location property
var locationResult = new Dictionary<string, LocationBase>();
foreach (var location in maps)
foreach (var kvp in maps)
{
var mapBase = location.Value?.Base;
var mapBase = kvp.Value?.Base;
if (mapBase == null)
{
_logger.Debug($"Map: {location} has no base json file, skipping generation");
_logger.Debug($"Map: {kvp} has no base json file, skipping generation");
continue;
}