Cleanup '#if CORE' in InstructionFactory.cs (#4424)

This commit is contained in:
Ilya 2017-07-31 23:51:05 +04:00 committed by Dongbo Wang
parent 1841682c08
commit 91df98f565

View file

@ -15,19 +15,10 @@
using System.Collections.Concurrent;
#if !CLR2
using BigInt = System.Numerics.BigInteger;
#endif
#if CORECLR
// Used for 'GetField' which is not available under 'Type' in CoreClR but provided as an extension method in 'System.Reflection.TypeExtensions'
using System.Reflection;
#endif
using System.Runtime.CompilerServices;
using System.Threading;
//using Microsoft.Scripting.Math;
namespace System.Management.Automation.Interpreter
{