Skip to content

Commit

Permalink
refactor!: rename MemoryTagResolver to MemoryTagStore
Browse files Browse the repository at this point in the history
Signed-off-by: Shiwei Zhang <[email protected]>
  • Loading branch information
shizhMSFT committed Jan 2, 2024
1 parent b4b8a44 commit 9cbbaca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/OrasProject.Oras/Content/MemoryStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace OrasProject.Oras.Content;
public class MemoryStore : ITarget, IPredecessorFinder
{
private readonly MemoryStorage _storage = new();
private readonly MemoryTagResolver _tagResolver = new();
private readonly MemoryTagStore _tagResolver = new();
private readonly MemoryGraph _graph = new();

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

namespace OrasProject.Oras.Content;

internal class MemoryTagResolver : ITagStore
internal class MemoryTagStore : ITagStore
{
private readonly ConcurrentDictionary<string, Descriptor> _index = new();

Expand Down

0 comments on commit 9cbbaca

Please sign in to comment.