From db8e7de58e3929dedba8595c5c4477395ef34371 Mon Sep 17 00:00:00 2001 From: IgorEisberg Date: Sat, 8 Jul 2023 23:54:22 +0300 Subject: [PATCH] style --- ItemSellPrice/Plugin.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ItemSellPrice/Plugin.cs b/ItemSellPrice/Plugin.cs index 6bc6715..fa6f79f 100644 --- a/ItemSellPrice/Plugin.cs +++ b/ItemSellPrice/Plugin.cs @@ -68,10 +68,8 @@ namespace IcyClawz.ItemSellPrice public class SecureContainerPatch : ModulePatch { - protected override MethodBase GetTargetMethod() - { - return typeof(ItemContainerClass).GetConstructors()[0]; - } + protected override MethodBase GetTargetMethod() => + typeof(ItemContainerClass).GetConstructors()[0]; [PatchPostfix] private static void PatchPostfix(ref ItemContainerClass __instance)