Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Nullable annotation for System.IO.Pipelines #41407

Merged
merged 6 commits into from
Oct 14, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Applying feedback
  • Loading branch information
buyaa-n committed Oct 8, 2019
commit 2f38c1655b9783e7e6ccba8b1e1d09a5ec64bfaf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ internal static class ThrowHelper
[DoesNotReturn]
internal static void ThrowArgumentOutOfRangeException(ExceptionArgument argument) => throw CreateArgumentOutOfRangeException(argument);
[MethodImpl(MethodImplOptions.NoInlining)]

private static Exception CreateArgumentOutOfRangeException(ExceptionArgument argument) => new ArgumentOutOfRangeException(argument.ToString());

[DoesNotReturn]
Expand Down