Formatting

This commit is contained in:
Thorsten Sommer 2025-12-04 15:34:04 +01:00
parent 6faa488699
commit 8eecccbca5
No known key found for this signature in database
GPG Key ID: B0B7E2FC074BF1F5

View File

@ -155,8 +155,7 @@ public static partial class ManagedConfiguration
LuaTable settings, LuaTable settings,
bool dryRun) bool dryRun)
{ {
return TryProcessConfiguration(configSelection, propertyExpression, string.Empty, configPluginId, settings, return TryProcessConfiguration(configSelection, propertyExpression, string.Empty, configPluginId, settings, dryRun);
dryRun);
} }
/// <summary> /// <summary>
@ -206,7 +205,7 @@ public static partial class ManagedConfiguration
// Case: the read string is a Guid: // Case: the read string is a Guid:
case Guid: case Guid:
successful = Guid.TryParse(configuredText, out var id); successful = Guid.TryParse(configuredText, out var id);
configuredValue = successful ? id.ToString().ToLowerInvariant(): configuredText; configuredValue = successful ? id.ToString().ToLowerInvariant() : configuredText;
break; break;
// Case: the read string is just a string: // Case: the read string is just a string: