Skip to content

Commit bce507b

Browse files
committed
Removed unnecessary EditorBrowsable attributes
1 parent fabeba6 commit bce507b

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Microsoft.Toolkit.HighPerformance/Enumerables/ReadOnlyRefEnumerable{T}.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System;
6-
using System.ComponentModel;
76
using System.Diagnostics.Contracts;
87
using System.Runtime.CompilerServices;
98
#if SPAN_RUNTIME_SUPPORT
@@ -21,7 +20,6 @@ namespace Microsoft.Toolkit.HighPerformance.Enumerables
2120
/// A <see langword="ref"/> <see langword="struct"/> that iterates readonly items from arbitrary memory locations.
2221
/// </summary>
2322
/// <typeparam name="T">The type of items to enumerate.</typeparam>
24-
[EditorBrowsable(EditorBrowsableState.Never)]
2523
public ref struct ReadOnlyRefEnumerable<T>
2624
{
2725
#if SPAN_RUNTIME_SUPPORT

Microsoft.Toolkit.HighPerformance/Enumerables/RefEnumerable{T}.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System;
6-
using System.ComponentModel;
76
using System.Diagnostics.Contracts;
87
using System.Runtime.CompilerServices;
98
#if SPAN_RUNTIME_SUPPORT
@@ -21,7 +20,6 @@ namespace Microsoft.Toolkit.HighPerformance.Enumerables
2120
/// A <see langword="ref"/> <see langword="struct"/> that iterates items from arbitrary memory locations.
2221
/// </summary>
2322
/// <typeparam name="T">The type of items to enumerate.</typeparam>
24-
[EditorBrowsable(EditorBrowsableState.Never)]
2523
public ref struct RefEnumerable<T>
2624
{
2725
#if SPAN_RUNTIME_SUPPORT

0 commit comments

Comments
 (0)