Skip to content

Commit 49bd040

Browse files
committed
Cleanup
1 parent 5cdb494 commit 49bd040

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/Extensions/ReadOnlySpan/ReadOnlySpanExtensions.Linq.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,6 @@ public static BigInteger Average(this ReadOnlySpan<BigInteger> source)
561561
return sum / source.Length;
562562
}
563563
#endif
564-
/*###################################### MIN ######################################################################*/
565564
#if NET7_0_OR_GREATER
566565

567566
/// <summary>
@@ -792,7 +791,6 @@ public static BigInteger Min(this ReadOnlySpan<BigInteger> source)
792791
return min;
793792
}
794793
#endif
795-
/*################################ MAX #######################################*/
796794
#if NET7_0_OR_GREATER
797795

798796
/// <summary>

src/Extensions/Span/SpanExtensions.Linq.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,6 @@ public static BigInteger Average(this Span<BigInteger> source)
460460
return ReadOnlySpanExtensions.Average(source);
461461
}
462462
#endif
463-
/*#################################### MIN ##################################*/
464463
#if NET7_0_OR_GREATER
465464

466465
/// <summary>
@@ -620,7 +619,6 @@ public static BigInteger Min(this Span<BigInteger> source)
620619
return ReadOnlySpanExtensions.Min(source);
621620
}
622621
#endif
623-
/*########################################## MAX ##########################################*/
624622
#if NET7_0_OR_GREATER
625623

626624
/// <summary>

0 commit comments

Comments
 (0)