feat(CryptFactory.LazyStaticCryptFactory): umbenennen in LazyInstance
This commit is contained in:
parent
ed36015d1e
commit
cb9c5746b0
@ -4,8 +4,8 @@ namespace DigitalData.Core.Security
|
|||||||
{
|
{
|
||||||
public class CryptFactory : ICryptFactory
|
public class CryptFactory : ICryptFactory
|
||||||
{
|
{
|
||||||
private static readonly Lazy<CryptFactory> LazyStaticCryptFactory = new (() => new ());
|
private static readonly Lazy<CryptFactory> LazyInstance = new (() => new ());
|
||||||
|
|
||||||
public static CryptFactory Instance => LazyStaticCryptFactory.Value;
|
public static CryptFactory Instance => LazyInstance.Value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user