Skip to content

Commit 7bc9865

Browse files
committed
Close public access to IMaterializingReader and its implementor
1 parent e767cb2 commit 7bc9865

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Orm/Xtensive.Orm/Orm/Linq/Materialization/MaterializingReader.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2020 Xtensive LLC.
1+
// Copyright (C) 2020-2021 Xtensive LLC.
22
// This code is distributed under MIT license terms.
33
// See the License.txt file in the project root for more information.
44

@@ -11,13 +11,13 @@
1111

1212
namespace Xtensive.Orm.Linq.Materialization
1313
{
14-
public interface IMaterializingReader<out TItem>
14+
internal interface IMaterializingReader<out TItem>
1515
{
1616
IEnumerator<TItem> AsEnumerator();
1717
IAsyncEnumerator<TItem> AsAsyncEnumerator();
1818
}
1919

20-
public class MaterializingReader<TItem>: IMaterializingReader<TItem>, IEnumerator<TItem>, IAsyncEnumerator<TItem>
20+
internal class MaterializingReader<TItem>: IMaterializingReader<TItem>, IEnumerator<TItem>, IAsyncEnumerator<TItem>
2121
{
2222
private readonly RecordSetReader recordSetReader;
2323
private readonly MaterializationContext context;

0 commit comments

Comments
 (0)