From 196504d625355d5f714ef309d20c95079d354961 Mon Sep 17 00:00:00 2001 From: goat Date: Wed, 4 Oct 2023 23:47:08 +0200 Subject: [PATCH] chore: remove now useless MoveFile import --- Dalamud/Utility/Util.cs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Dalamud/Utility/Util.cs b/Dalamud/Utility/Util.cs index d27b79ea3..3916a5789 100644 --- a/Dalamud/Utility/Util.cs +++ b/Dalamud/Utility/Util.cs @@ -812,18 +812,4 @@ public static class Util } } } - - [Flags] -#pragma warning disable SA1201 - private enum MoveFileFlags -#pragma warning restore SA1201 - { - MovefileReplaceExisting = 0x00000001, - MovefileWriteThrough = 0x00000008, - } - - [return: MarshalAs(UnmanagedType.Bool)] - [DllImport("kernel32.dll", SetLastError=true, CharSet=CharSet.Unicode)] - private static extern bool MoveFileEx(string lpExistingFileName, string lpNewFileName, - MoveFileFlags dwFlags); }