qol: remove this

This commit is contained in:
Gary Sharp
2025-07-20 11:39:42 +10:00
parent b4e54c9edf
commit 4e518d6684
56 changed files with 282 additions and 282 deletions
@@ -13,7 +13,7 @@ namespace Disco.Data.Configuration.Modules
{
get
{
var v = this.Get(1);
var v = Get(1);
if (v > 0)
return v;
else
@@ -24,21 +24,21 @@ namespace Disco.Data.Configuration.Modules
if (value < 1)
throw new ArgumentOutOfRangeException("value", "Expected >= 1");
this.Set(value);
Set(value);
}
}
public int DefaultAddDeviceOfflineDeviceProfileId
{
get
{
return this.Get(0);
return Get(0);
}
set
{
if (value < 0)
throw new ArgumentOutOfRangeException("value", "Expected >= 0");
this.Set(value);
Set(value);
}
}