Skip to content

Commit 06e7a02

Browse files
author
Alex Peck
committed
make new types internal
1 parent 1e8dc28 commit 06e7a02

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

BitFaster.Caching/Lfu/EventPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace BitFaster.Caching.Lfu
1010
/// <typeparam name="K">The type of the Key</typeparam>
1111
/// <typeparam name="V">The type of the value</typeparam>
1212
[DebuggerDisplay("Upd = {Updated}, Evict = {Evicted}")]
13-
public struct EventPolicy<K, V> : IEventPolicy<K, V>
13+
internal struct EventPolicy<K, V> : IEventPolicy<K, V>
1414
where K : notnull
1515
{
1616
private object eventSource;

BitFaster.Caching/Lfu/IEventPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace BitFaster.Caching.Lfu
66
/// </summary>
77
/// <typeparam name="K">The type of the key.</typeparam>
88
/// <typeparam name="V">The type of the value.</typeparam>
9-
public interface IEventPolicy<K, V> : ICacheEvents<K, V>
9+
internal interface IEventPolicy<K, V> : ICacheEvents<K, V>
1010
where K : notnull
1111
{
1212
/// <summary>

BitFaster.Caching/Lfu/NoEventPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace BitFaster.Caching.Lfu
99
/// </summary>
1010
/// <typeparam name="K">The type of the key.</typeparam>
1111
/// <typeparam name="V">The type of the value.</typeparam>
12-
public struct NoEventPolicy<K, V> : IEventPolicy<K, V>
12+
internal struct NoEventPolicy<K, V> : IEventPolicy<K, V>
1313
where K : notnull
1414
{
1515
///<inheritdoc/>

0 commit comments

Comments
 (0)