Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
Make AdalCache actually instantiable (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
JPWilli authored Mar 29, 2019
1 parent ed7598f commit 1dbf33e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.Identity.Client.Extensions.Adal/AdalCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public sealed class AdalCache : TokenCache
/// </summary>
/// <param name="storage">Adal cache storage</param>
/// <param name="logger">Logger</param>
internal AdalCache(AdalCacheStorage storage, TraceSource logger)
public AdalCache(AdalCacheStorage storage, TraceSource logger)
{
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
_store = storage ?? throw new ArgumentNullException(nameof(storage));
Expand Down

0 comments on commit 1dbf33e

Please sign in to comment.