Skip to content
This repository was archived by the owner on Nov 22, 2018. It is now read-only.

Commit 7eaea2b

Browse files
committed
rename
1 parent dfbd6ce commit 7eaea2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Microsoft.AspNetCore.Session/DistributedSession.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ private void Load()
184184
_isAvailable = false;
185185
_sessionId = string.Empty;
186186
_sessionIdBytes = null;
187-
_store = new EmptySessionStore();
187+
_store = new NoOpSessionStore();
188188
}
189189
finally
190190
{

src/Microsoft.AspNetCore.Session/EmptySessionStore.cs renamed to src/Microsoft.AspNetCore.Session/NoOpSessionStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Microsoft.AspNetCore.Session
99
{
10-
internal class EmptySessionStore : IDictionary<EncodedKey, byte[]>
10+
internal class NoOpSessionStore : IDictionary<EncodedKey, byte[]>
1111
{
1212
public byte[] this[EncodedKey key]
1313
{

0 commit comments

Comments
 (0)