Enforce comment spacing with Stylecop

Fixes #3104
This commit is contained in:
Qstick 2022-11-21 19:51:00 -06:00
parent 52fc5ae1ea
commit c02b66ec44
102 changed files with 299 additions and 300 deletions

View file

@ -270,13 +270,13 @@ namespace NzbDrone.Core.Configuration
return valueHolder.First().Value.Trim();
}
//Save the value
// Save the value
if (persist)
{
SetValue(key, defaultValue);
}
//return the default value
// return the default value
return defaultValue.ToString();
});
}