We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 19fae71 + fe7e05d commit 8850680Copy full SHA for 8850680
digicert-certcentral-caplugin/Models/CertCentralCertType.cs
@@ -16,7 +16,6 @@ public class CertCentralCertType
16
#region Private Fields
17
18
private static readonly ILogger Logger = LogHandler.GetClassLogger<CertCentralCertType>();
19
- private static List<CertCentralCertType> _allTypes;
20
21
#endregion Private Fields
22
@@ -62,12 +61,7 @@ public class CertCentralCertType
62
61
/// <returns></returns>
63
public static List<CertCentralCertType> GetAllTypes(CertCentralConfig config)
64
{
65
- if (_allTypes == null || !_allTypes.Any())
66
- {
67
- _allTypes = RetrieveCertCentralCertTypes(config);
68
- }
69
-
70
- return _allTypes;
+ return RetrieveCertCentralCertTypes(config);
71
}
72
73
/// <summary>
0 commit comments