mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-20 06:47:56 +08:00
[EnvVar] Use ArgumentNullException.ThrowIfNull
This commit is contained in:
parent
f63a84e7b3
commit
d8919552bc
@ -31,10 +31,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
|
|||||||
WriteIndented = true,
|
WriteIndented = true,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (settingsUtils == null)
|
ArgumentNullException.ThrowIfNull(settingsUtils);
|
||||||
{
|
|
||||||
throw new ArgumentNullException(nameof(settingsUtils));
|
|
||||||
}
|
|
||||||
|
|
||||||
settingsUtils.SaveSettings(JsonSerializer.Serialize(this, options), ModuleName);
|
settingsUtils.SaveSettings(JsonSerializer.Serialize(this, options), ModuleName);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user