1
0
mirror of https://github.com/bitwarden/mobile synced 2025-01-28 17:29:18 +01:00

use string.Empty

This commit is contained in:
Kyle Spearrin 2020-03-16 21:07:54 -04:00
parent 5d719ba235
commit c6b37307b0

View File

@ -2,7 +2,7 @@
{
public class PasswordGeneratorPolicyOptions
{
public string DefaultType { get; set; } = "";
public string DefaultType { get; set; } = string.Empty;
public int MinLength { get; set; }
public bool UseUppercase { get; set; }
public bool UseLowercase { get; set; }
@ -16,7 +16,7 @@
public bool InEffect()
{
return DefaultType != "" ||
return DefaultType != string.Empty ||
MinLength > 0 ||
NumberCount > 0 ||
SpecialCount > 0 ||