1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-24 22:36:19 -04:00

Use 'var' instead of explicit type

This commit is contained in:
Bogdan
2023-05-23 13:52:39 +03:00
committed by Mark McDowall
parent 281add47de
commit 12374f7f00
113 changed files with 269 additions and 269 deletions
@@ -131,7 +131,7 @@ namespace NzbDrone.Core.Configuration
{
const string defaultValue = "*";
string bindAddress = GetValue("BindAddress", defaultValue);
var bindAddress = GetValue("BindAddress", defaultValue);
if (string.IsNullOrWhiteSpace(bindAddress))
{
return defaultValue;