Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions digicert-certcentral-caplugin/Models/CertCentralCertType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ public class CertCentralCertType
#region Private Fields

private static readonly ILogger Logger = LogHandler.GetClassLogger<CertCentralCertType>();
private static List<CertCentralCertType> _allTypes;

#endregion Private Fields

Expand Down Expand Up @@ -62,12 +61,7 @@ public class CertCentralCertType
/// <returns></returns>
public static List<CertCentralCertType> GetAllTypes(CertCentralConfig config)
{
if (_allTypes == null || !_allTypes.Any())
{
_allTypes = RetrieveCertCentralCertTypes(config);
}

return _allTypes;
return RetrieveCertCentralCertTypes(config);
}

/// <summary>
Expand Down
Loading