Initialize the instance in the default constructor

Actually initialize all class members from the default constructor
instead of creating a throw-away instance.
This commit is contained in:
Kai Ruhnau 2021-03-17 10:47:01 +01:00 коммит произвёл GitHub
Родитель ae4ae5d560
Коммит c2b8406b69
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -28,9 +28,8 @@ namespace AspNet.Identity.MySQL
/// instance using the Default Connection string
/// </summary>
public RoleStore()
{
new RoleStore<TRole>(new MySQLDatabase());
}
: this(new MySQLDatabase())
{ }
/// <summary>
/// Constructor that takes a MySQLDatabase as argument