From b46c5d3704cf228019b8156a2c576f14d505411b Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Mon, 23 Dec 2019 00:15:58 -0600 Subject: [PATCH] RemovedAggressiveInlining for .NET 3 --- IPA.Loader/Utilities/Utils.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/IPA.Loader/Utilities/Utils.cs b/IPA.Loader/Utilities/Utils.cs index c0f5b23c..3f6ced24 100644 --- a/IPA.Loader/Utilities/Utils.cs +++ b/IPA.Loader/Utilities/Utils.cs @@ -204,9 +204,7 @@ namespace IPA.Utilities internal static IEnumerable StrJP(this IEnumerable a) => a.Select(o => $"{o}" /* safer than .ToString() */); #endif #if NET3 - [MethodImpl(MethodImplOptions.AggressiveInlining)] internal static string[] StrJP(this IEnumerable a) => a.ToArray(); - [MethodImpl(MethodImplOptions.AggressiveInlining)] internal static string[] StrJP(this IEnumerable a) => a.Select(o => $"{o}" /* safer than .ToString() */).ToArray(); #endif }