Address PR feedback
authorStephen Toub <stoub@microsoft.com>
Tue, 19 Sep 2017 02:30:24 +0000 (22:30 -0400)
committerStephen Toub <stoub@microsoft.com>
Tue, 19 Sep 2017 02:30:24 +0000 (22:30 -0400)
src/mscorlib/shared/System/ParseNumbers.cs

index b0fac36..f59bc32 100644 (file)
@@ -651,16 +651,9 @@ namespace System
             return (int)result;
         }
 
-        [MethodImpl(MethodImplOptions.NoInlining)]
         private static void ThrowOverflowInt32Exception() => throw new OverflowException(SR.Overflow_Int32);
-
-        [MethodImpl(MethodImplOptions.NoInlining)]
         private static void ThrowOverflowInt64Exception() => throw new OverflowException(SR.Overflow_Int64);
-
-        [MethodImpl(MethodImplOptions.NoInlining)]
         private static void ThrowOverflowUInt32Exception() => throw new OverflowException(SR.Overflow_UInt32);
-
-        [MethodImpl(MethodImplOptions.NoInlining)]
         private static void ThrowOverflowUInt64Exception() => throw new OverflowException(SR.Overflow_UInt64);
 
         [MethodImpl(MethodImplOptions.AggressiveInlining)]