Skip to content

Commit fa43053

Browse files
committed
Codacy issue fix.
1 parent 506024c commit fa43053

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Platform.Collections/Arrays/ArrayPool[T].cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class ArrayPool<T>
1515
{
1616
// May be use Default class for that later.
1717
[ThreadStatic]
18-
internal static ArrayPool<T> _threadInstance;
18+
private static ArrayPool<T> _threadInstance;
1919
internal static ArrayPool<T> ThreadInstance => _threadInstance ?? (_threadInstance = new ArrayPool<T>());
2020

2121
private readonly int _maxArraysPerSize;

0 commit comments

Comments
 (0)