style: Code cleanup on entire solution

snyk
Robert Dailey 1 year ago
parent 63d852a4b4
commit fea6575ae8

@ -6,7 +6,6 @@ namespace Recyclarr.TrashLib.Services.CustomFormat.Processors.GuideSteps;
/// <remarks>
/// The purpose of this step is to validate the custom format data in the configs:
///
/// - Validate that custom formats specified in the config exist in the guide.
/// - Removal of duplicates.
/// </remarks>

@ -6,7 +6,8 @@ namespace Recyclarr.TrashLib.Services.Radarr;
// code does not need to be changed later.
public record RadarrCapabilities(Version Version)
{
public RadarrCapabilities() : this(new Version())
public RadarrCapabilities()
: this(new Version())
{
}
}

@ -2,7 +2,8 @@ namespace Recyclarr.TrashLib.Services.Sonarr;
public record SonarrCapabilities(Version Version)
{
public SonarrCapabilities() : this(new Version())
public SonarrCapabilities()
: this(new Version())
{
}

@ -12,9 +12,9 @@ public static class AutoMapperConfig
cfg.AddMaps(typeof(AutoMapperConfig));
});
#if DEBUG
#if DEBUG
mapperConfig.AssertConfigurationIsValid();
#endif
#endif
return mapperConfig.CreateMapper();
}

Loading…
Cancel
Save