From d539c32620d4f8fa3e40310add08debef7f5faac Mon Sep 17 00:00:00 2001 From: n00mkrad <61149547+n00mkrad@users.noreply.github.com> Date: Tue, 23 Dec 2025 22:56:05 +0100 Subject: [PATCH] Cleanup: remove usings --- CodeLegacy/Data/AudioTrack.cs | 4 +--- CodeLegacy/Data/Padding.cs | 8 +------- CodeLegacy/Data/ResumeState.cs | 6 +----- CodeLegacy/Data/Servers.cs | 3 +-- CodeLegacy/Data/Streams/SubtitleStream.cs | 4 +--- CodeLegacy/Data/SubtitleTrack.cs | 4 +--- CodeLegacy/Data/VidExtraData.cs | 1 - CodeLegacy/Data/VideoColorData.cs | 5 ----- CodeLegacy/Extensions/ProcessExtensions.cs | 5 ----- CodeLegacy/Forms/BigPreviewForm.cs | 9 +-------- CodeLegacy/Forms/Main/Form1.Properties.cs | 5 ----- CodeLegacy/Forms/TimeoutForm.cs | 6 ------ CodeLegacy/Forms/UpdaterForm.cs | 4 +--- CodeLegacy/IO/CfgStrings.cs | 8 +------- CodeLegacy/IO/IoUtils.cs | 1 - CodeLegacy/Magick/Dedupe.cs | 2 -- CodeLegacy/Magick/MagickExtensions.cs | 9 +-------- CodeLegacy/Main/AiModels.cs | 4 ---- CodeLegacy/Main/AutoEncode.cs | 1 - CodeLegacy/Main/AutoEncodeResume.cs | 7 +------ CodeLegacy/Main/BatchProcessing.cs | 3 --- CodeLegacy/Main/FrameOrder.cs | 2 -- CodeLegacy/Main/InterpolateSteps.cs | 4 +--- CodeLegacy/Main/InterpolateUtils.cs | 1 - CodeLegacy/Main/ResumeUtils.cs | 2 -- CodeLegacy/Media/AvOutputHandler.cs | 5 ----- CodeLegacy/Media/AvProcess.cs | 5 ----- CodeLegacy/Media/FfmpegAlpha.cs | 9 +-------- CodeLegacy/Media/FfmpegEncode.cs | 1 - CodeLegacy/Media/FfmpegExtract.cs | 1 - CodeLegacy/Media/FfmpegUtils.cs | 4 ---- CodeLegacy/Media/GetFrameCountCached.cs | 4 +--- CodeLegacy/Media/GetMediaResolutionCached.cs | 1 - CodeLegacy/Media/GetVideoInfo.cs | 4 +--- CodeLegacy/MiscUtils/FormatUtils.cs | 3 --- CodeLegacy/MiscUtils/FrameRename.cs | 5 +---- CodeLegacy/Os/AiProcessSuspend.cs | 1 - CodeLegacy/Os/Python.cs | 3 +-- CodeLegacy/Os/VapourSynthUtils.cs | 1 - CodeLegacy/Properties/AssemblyInfo.cs | 1 - CodeLegacy/Ui/ControlExtensions.cs | 2 -- CodeLegacy/Ui/DebugFormHelper.cs | 3 --- CodeLegacy/Ui/InterpolationProgress.cs | 1 - CodeLegacy/Ui/MainUiFunctions.cs | 3 --- CodeLegacy/Ui/QuickSettingsTab.cs | 11 +---------- CodeLegacy/Ui/UiUtils.cs | 1 - CodeLegacy/Utilities/ColorDataUtils.cs | 13 +------------ 47 files changed, 19 insertions(+), 171 deletions(-) diff --git a/CodeLegacy/Data/AudioTrack.cs b/CodeLegacy/Data/AudioTrack.cs index 82fc76d..209fa01 100644 --- a/CodeLegacy/Data/AudioTrack.cs +++ b/CodeLegacy/Data/AudioTrack.cs @@ -1,6 +1,4 @@ -using System.Globalization; - -namespace Flowframes.Data +namespace Flowframes.Data { class AudioTrack { diff --git a/CodeLegacy/Data/Padding.cs b/CodeLegacy/Data/Padding.cs index b461217..9a0053f 100644 --- a/CodeLegacy/Data/Padding.cs +++ b/CodeLegacy/Data/Padding.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Flowframes.Data +namespace Flowframes.Data { class Padding { diff --git a/CodeLegacy/Data/ResumeState.cs b/CodeLegacy/Data/ResumeState.cs index 5d09937..bdef57b 100644 --- a/CodeLegacy/Data/ResumeState.cs +++ b/CodeLegacy/Data/ResumeState.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using System.Collections.Generic; namespace Flowframes.Data { diff --git a/CodeLegacy/Data/Servers.cs b/CodeLegacy/Data/Servers.cs index 29db6da..b88d202 100644 --- a/CodeLegacy/Data/Servers.cs +++ b/CodeLegacy/Data/Servers.cs @@ -1,5 +1,4 @@ -using Flowframes.Forms; -using Flowframes.IO; +using Flowframes.IO; using System; using System.Collections.Generic; using System.Linq; diff --git a/CodeLegacy/Data/Streams/SubtitleStream.cs b/CodeLegacy/Data/Streams/SubtitleStream.cs index 743da01..245911e 100644 --- a/CodeLegacy/Data/Streams/SubtitleStream.cs +++ b/CodeLegacy/Data/Streams/SubtitleStream.cs @@ -1,6 +1,4 @@ -using Flowframes.Extensions; - -namespace Flowframes.Data.Streams +namespace Flowframes.Data.Streams { public class SubtitleStream : Stream { diff --git a/CodeLegacy/Data/SubtitleTrack.cs b/CodeLegacy/Data/SubtitleTrack.cs index e24964e..e5fbb59 100644 --- a/CodeLegacy/Data/SubtitleTrack.cs +++ b/CodeLegacy/Data/SubtitleTrack.cs @@ -1,6 +1,4 @@ -using System.Globalization; - -namespace Flowframes.Data +namespace Flowframes.Data { class SubtitleTrack { diff --git a/CodeLegacy/Data/VidExtraData.cs b/CodeLegacy/Data/VidExtraData.cs index 6299d30..33290e3 100644 --- a/CodeLegacy/Data/VidExtraData.cs +++ b/CodeLegacy/Data/VidExtraData.cs @@ -2,7 +2,6 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Windows.Media; namespace Flowframes.Data { diff --git a/CodeLegacy/Data/VideoColorData.cs b/CodeLegacy/Data/VideoColorData.cs index 4d57b65..560dc5e 100644 --- a/CodeLegacy/Data/VideoColorData.cs +++ b/CodeLegacy/Data/VideoColorData.cs @@ -1,10 +1,5 @@ using Flowframes.Utilities; -using System; using System.Collections.Generic; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Flowframes.Data { diff --git a/CodeLegacy/Extensions/ProcessExtensions.cs b/CodeLegacy/Extensions/ProcessExtensions.cs index d7676c9..33b2766 100644 --- a/CodeLegacy/Extensions/ProcessExtensions.cs +++ b/CodeLegacy/Extensions/ProcessExtensions.cs @@ -1,11 +1,6 @@ using System; -using System.Collections.Generic; using System.Diagnostics; -using System.Linq; using System.Runtime.InteropServices; -using System.Text; -using System.Threading.Tasks; -using Win32Interop; namespace Flowframes.Extensions { diff --git a/CodeLegacy/Forms/BigPreviewForm.cs b/CodeLegacy/Forms/BigPreviewForm.cs index ad82976..1ffd1ee 100644 --- a/CodeLegacy/Forms/BigPreviewForm.cs +++ b/CodeLegacy/Forms/BigPreviewForm.cs @@ -1,12 +1,5 @@ -using Flowframes.Main; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; +using System; using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using System.Windows.Forms; using Flowframes.Ui; diff --git a/CodeLegacy/Forms/Main/Form1.Properties.cs b/CodeLegacy/Forms/Main/Form1.Properties.cs index ac11fa3..dc1550e 100644 --- a/CodeLegacy/Forms/Main/Form1.Properties.cs +++ b/CodeLegacy/Forms/Main/Form1.Properties.cs @@ -1,11 +1,6 @@ using Flowframes.Data; using Flowframes.Main; using Flowframes.MiscUtils; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Flowframes.Forms.Main { diff --git a/CodeLegacy/Forms/TimeoutForm.cs b/CodeLegacy/Forms/TimeoutForm.cs index 5ee3028..a8f829f 100644 --- a/CodeLegacy/Forms/TimeoutForm.cs +++ b/CodeLegacy/Forms/TimeoutForm.cs @@ -1,10 +1,4 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; using System.Threading.Tasks; using System.Windows.Forms; diff --git a/CodeLegacy/Forms/UpdaterForm.cs b/CodeLegacy/Forms/UpdaterForm.cs index d2711ef..190b858 100644 --- a/CodeLegacy/Forms/UpdaterForm.cs +++ b/CodeLegacy/Forms/UpdaterForm.cs @@ -1,7 +1,5 @@ -using Flowframes.Data; -using Flowframes.Os; +using Flowframes.Os; using System; -using System.Collections.Generic; using System.Diagnostics; using System.Threading.Tasks; using System.Windows.Forms; diff --git a/CodeLegacy/IO/CfgStrings.cs b/CodeLegacy/IO/CfgStrings.cs index eea1077..06e21bd 100644 --- a/CodeLegacy/IO/CfgStrings.cs +++ b/CodeLegacy/IO/CfgStrings.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Flowframes.IO +namespace Flowframes.IO { class CfgStrings { diff --git a/CodeLegacy/IO/IoUtils.cs b/CodeLegacy/IO/IoUtils.cs index 94b4fbd..f456ff0 100644 --- a/CodeLegacy/IO/IoUtils.cs +++ b/CodeLegacy/IO/IoUtils.cs @@ -1,5 +1,4 @@ using Flowframes.Data; -using Flowframes.Magick; using Flowframes.Main; using Flowframes.Media; using Flowframes.MiscUtils; diff --git a/CodeLegacy/Magick/Dedupe.cs b/CodeLegacy/Magick/Dedupe.cs index 28e9c69..285ddad 100644 --- a/CodeLegacy/Magick/Dedupe.cs +++ b/CodeLegacy/Magick/Dedupe.cs @@ -7,9 +7,7 @@ using System.Threading.Tasks; using System.Threading; using Flowframes.IO; using ImageMagick; -using Newtonsoft.Json; using Flowframes.Os; -using System.Windows.Controls; namespace Flowframes.Magick { diff --git a/CodeLegacy/Magick/MagickExtensions.cs b/CodeLegacy/Magick/MagickExtensions.cs index cfcac69..974dfba 100644 --- a/CodeLegacy/Magick/MagickExtensions.cs +++ b/CodeLegacy/Magick/MagickExtensions.cs @@ -1,16 +1,9 @@ -using Flowframes.MiscUtils; -using ImageMagick; +using ImageMagick; using System; -using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Drawing; using System.Drawing.Imaging; using System.IO; -using System.Linq; -using System.Runtime.InteropServices; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Media.Imaging; namespace Flowframes.Magick { diff --git a/CodeLegacy/Main/AiModels.cs b/CodeLegacy/Main/AiModels.cs index 38c65ac..1bc5017 100644 --- a/CodeLegacy/Main/AiModels.cs +++ b/CodeLegacy/Main/AiModels.cs @@ -1,12 +1,8 @@ using Flowframes.Data; using Flowframes.IO; -using System; using System.Collections.Generic; using System.IO; -using System.Linq; -using System.Text; using System.Text.RegularExpressions; -using System.Threading.Tasks; namespace Flowframes.Main { diff --git a/CodeLegacy/Main/AutoEncode.cs b/CodeLegacy/Main/AutoEncode.cs index 294b05d..a93d0a3 100644 --- a/CodeLegacy/Main/AutoEncode.cs +++ b/CodeLegacy/Main/AutoEncode.cs @@ -7,7 +7,6 @@ using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; -using System.Text; using System.Threading.Tasks; using Flowframes.Ui; using Flowframes.Os; diff --git a/CodeLegacy/Main/AutoEncodeResume.cs b/CodeLegacy/Main/AutoEncodeResume.cs index 8a01c77..5ca41a9 100644 --- a/CodeLegacy/Main/AutoEncodeResume.cs +++ b/CodeLegacy/Main/AutoEncodeResume.cs @@ -1,14 +1,9 @@ -using Flowframes.Data; -using Flowframes.IO; +using Flowframes.IO; using System; using System.Collections.Generic; -using System.Diagnostics; using System.IO; using System.Linq; -using System.Text; using System.Threading.Tasks; -using Flowframes.MiscUtils; -using Flowframes.Ui; using I = Flowframes.Interpolate; using Newtonsoft.Json; diff --git a/CodeLegacy/Main/BatchProcessing.cs b/CodeLegacy/Main/BatchProcessing.cs index 86636f6..949c831 100644 --- a/CodeLegacy/Main/BatchProcessing.cs +++ b/CodeLegacy/Main/BatchProcessing.cs @@ -4,10 +4,7 @@ using Flowframes.IO; using Flowframes.Os; using Flowframes.Ui; using System; -using System.Collections.Generic; using System.IO; -using System.Linq; -using System.Text; using System.Threading.Tasks; namespace Flowframes.Main diff --git a/CodeLegacy/Main/FrameOrder.cs b/CodeLegacy/Main/FrameOrder.cs index 6bb2f18..e8d103a 100644 --- a/CodeLegacy/Main/FrameOrder.cs +++ b/CodeLegacy/Main/FrameOrder.cs @@ -1,8 +1,6 @@ using Flowframes.Data; using Flowframes.IO; using Flowframes.MiscUtils; -using Flowframes.Os; -using Flowframes.Properties; using Newtonsoft.Json; using System; using System.Collections.Generic; diff --git a/CodeLegacy/Main/InterpolateSteps.cs b/CodeLegacy/Main/InterpolateSteps.cs index 0f951a0..4ddaa99 100644 --- a/CodeLegacy/Main/InterpolateSteps.cs +++ b/CodeLegacy/Main/InterpolateSteps.cs @@ -1,6 +1,4 @@ -using Flowframes.Media; -using Flowframes.IO; -using System; +using Flowframes.IO; using System.IO; using System.Threading.Tasks; using Flowframes.MiscUtils; diff --git a/CodeLegacy/Main/InterpolateUtils.cs b/CodeLegacy/Main/InterpolateUtils.cs index 3cbead2..f95f6f4 100644 --- a/CodeLegacy/Main/InterpolateUtils.cs +++ b/CodeLegacy/Main/InterpolateUtils.cs @@ -12,7 +12,6 @@ using System.Linq; using System.Threading.Tasks; using I = Flowframes.Interpolate; using Padding = Flowframes.Data.Padding; -using Flowframes.MiscUtils; namespace Flowframes.Main { diff --git a/CodeLegacy/Main/ResumeUtils.cs b/CodeLegacy/Main/ResumeUtils.cs index c22d019..b83cef4 100644 --- a/CodeLegacy/Main/ResumeUtils.cs +++ b/CodeLegacy/Main/ResumeUtils.cs @@ -4,8 +4,6 @@ using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; -using System.Linq; -using System.Text; using System.Threading.Tasks; using Flowframes.MiscUtils; using Flowframes.Ui; diff --git a/CodeLegacy/Media/AvOutputHandler.cs b/CodeLegacy/Media/AvOutputHandler.cs index a8e0be5..40b02a2 100644 --- a/CodeLegacy/Media/AvOutputHandler.cs +++ b/CodeLegacy/Media/AvOutputHandler.cs @@ -1,12 +1,7 @@ using Flowframes.Forms.Main; using Flowframes.MiscUtils; using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.Linq; -using System.Text; using System.Text.RegularExpressions; -using System.Threading.Tasks; using static Flowframes.AvProcess; namespace Flowframes.Media diff --git a/CodeLegacy/Media/AvProcess.cs b/CodeLegacy/Media/AvProcess.cs index d0a7bb0..426381d 100644 --- a/CodeLegacy/Media/AvProcess.cs +++ b/CodeLegacy/Media/AvProcess.cs @@ -1,17 +1,12 @@ using Flowframes.IO; using Flowframes.Os; using System; -using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; -using System.Text; -using System.Text.RegularExpressions; using System.Threading.Tasks; using Flowframes.MiscUtils; -using Microsoft.VisualBasic; using Flowframes.Media; -using System.Windows.Input; namespace Flowframes { diff --git a/CodeLegacy/Media/FfmpegAlpha.cs b/CodeLegacy/Media/FfmpegAlpha.cs index 4076254..eed61a0 100644 --- a/CodeLegacy/Media/FfmpegAlpha.cs +++ b/CodeLegacy/Media/FfmpegAlpha.cs @@ -1,13 +1,6 @@ -using Flowframes.Data; -using Flowframes.IO; -using Flowframes.Main; -using Flowframes.MiscUtils; -using System; -using System.Collections.Generic; +using Flowframes.IO; using System.Drawing; -using System.Globalization; using System.IO; -using System.Linq; using System.Threading.Tasks; using static Flowframes.AvProcess; diff --git a/CodeLegacy/Media/FfmpegEncode.cs b/CodeLegacy/Media/FfmpegEncode.cs index cc4e171..c4ca9e2 100644 --- a/CodeLegacy/Media/FfmpegEncode.cs +++ b/CodeLegacy/Media/FfmpegEncode.cs @@ -5,7 +5,6 @@ using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; -using Win32Interop.Enums; using static Flowframes.AvProcess; using Utils = Flowframes.Media.FfmpegUtils; diff --git a/CodeLegacy/Media/FfmpegExtract.cs b/CodeLegacy/Media/FfmpegExtract.cs index 5c520da..e258a94 100644 --- a/CodeLegacy/Media/FfmpegExtract.cs +++ b/CodeLegacy/Media/FfmpegExtract.cs @@ -1,6 +1,5 @@ using Flowframes.Data; using Flowframes.IO; -using Flowframes.Main; using Flowframes.MiscUtils; using Flowframes.Ui; using System; diff --git a/CodeLegacy/Media/FfmpegUtils.cs b/CodeLegacy/Media/FfmpegUtils.cs index 9434e66..8fa18b9 100644 --- a/CodeLegacy/Media/FfmpegUtils.cs +++ b/CodeLegacy/Media/FfmpegUtils.cs @@ -2,12 +2,8 @@ using Flowframes.Data.Streams; using Flowframes.IO; using Flowframes.MiscUtils; -using Flowframes.Os; -using Flowframes.Properties; -using ImageMagick; using System; using System.Collections.Generic; -using System.Diagnostics; using System.Drawing; using System.IO; using System.Linq; diff --git a/CodeLegacy/Media/GetFrameCountCached.cs b/CodeLegacy/Media/GetFrameCountCached.cs index bd56bdb..37a7e27 100644 --- a/CodeLegacy/Media/GetFrameCountCached.cs +++ b/CodeLegacy/Media/GetFrameCountCached.cs @@ -1,6 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Drawing; +using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Flowframes.Data; diff --git a/CodeLegacy/Media/GetMediaResolutionCached.cs b/CodeLegacy/Media/GetMediaResolutionCached.cs index 960cd9e..8e7687e 100644 --- a/CodeLegacy/Media/GetMediaResolutionCached.cs +++ b/CodeLegacy/Media/GetMediaResolutionCached.cs @@ -1,7 +1,6 @@ using System.Collections.Generic; using System.Drawing; using System.IO; -using System.Linq; using System.Threading.Tasks; using Flowframes.Data; using Flowframes.IO; diff --git a/CodeLegacy/Media/GetVideoInfo.cs b/CodeLegacy/Media/GetVideoInfo.cs index 57b67e4..04e84fe 100644 --- a/CodeLegacy/Media/GetVideoInfo.cs +++ b/CodeLegacy/Media/GetVideoInfo.cs @@ -1,7 +1,5 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Diagnostics; -using System.IO; using System.Linq; using System.Threading.Tasks; using Flowframes.Data; diff --git a/CodeLegacy/MiscUtils/FormatUtils.cs b/CodeLegacy/MiscUtils/FormatUtils.cs index 00905a8..e0a7301 100644 --- a/CodeLegacy/MiscUtils/FormatUtils.cs +++ b/CodeLegacy/MiscUtils/FormatUtils.cs @@ -1,10 +1,7 @@ using Flowframes.Data; using System; -using System.Collections.Generic; using System.Diagnostics; using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Flowframes.MiscUtils { diff --git a/CodeLegacy/MiscUtils/FrameRename.cs b/CodeLegacy/MiscUtils/FrameRename.cs index b6c2ddd..a4d972b 100644 --- a/CodeLegacy/MiscUtils/FrameRename.cs +++ b/CodeLegacy/MiscUtils/FrameRename.cs @@ -1,9 +1,6 @@ -using System; -using System.Collections.Generic; -using System.Diagnostics; +using System.Diagnostics; using System.IO; using System.Linq; -using System.Text; using System.Threading.Tasks; using Flowframes.Data; using Flowframes.IO; diff --git a/CodeLegacy/Os/AiProcessSuspend.cs b/CodeLegacy/Os/AiProcessSuspend.cs index 36bccd8..e1eeedc 100644 --- a/CodeLegacy/Os/AiProcessSuspend.cs +++ b/CodeLegacy/Os/AiProcessSuspend.cs @@ -1,6 +1,5 @@ using Flowframes.Extensions; using Flowframes.Properties; -using System; using System.Collections.Generic; using System.Diagnostics; diff --git a/CodeLegacy/Os/Python.cs b/CodeLegacy/Os/Python.cs index 17478f7..1fc89fa 100644 --- a/CodeLegacy/Os/Python.cs +++ b/CodeLegacy/Os/Python.cs @@ -1,5 +1,4 @@ -using Flowframes.Data; -using Flowframes.IO; +using Flowframes.IO; using Flowframes.MiscUtils; using Flowframes.Ui; using System.Diagnostics; diff --git a/CodeLegacy/Os/VapourSynthUtils.cs b/CodeLegacy/Os/VapourSynthUtils.cs index 8613cc6..9d2f14a 100644 --- a/CodeLegacy/Os/VapourSynthUtils.cs +++ b/CodeLegacy/Os/VapourSynthUtils.cs @@ -4,7 +4,6 @@ using Flowframes.MiscUtils; using Flowframes.Ui; using System; using System.Collections.Generic; -using System.Diagnostics; using System.Drawing; using System.IO; using System.Linq; diff --git a/CodeLegacy/Properties/AssemblyInfo.cs b/CodeLegacy/Properties/AssemblyInfo.cs index 7cb0296..91f5d03 100644 --- a/CodeLegacy/Properties/AssemblyInfo.cs +++ b/CodeLegacy/Properties/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following diff --git a/CodeLegacy/Ui/ControlExtensions.cs b/CodeLegacy/Ui/ControlExtensions.cs index fe18f4c..354ea38 100644 --- a/CodeLegacy/Ui/ControlExtensions.cs +++ b/CodeLegacy/Ui/ControlExtensions.cs @@ -1,8 +1,6 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Text; -using System.Threading.Tasks; using System.Windows.Forms; namespace Flowframes.Ui diff --git a/CodeLegacy/Ui/DebugFormHelper.cs b/CodeLegacy/Ui/DebugFormHelper.cs index b497c1e..b3d7556 100644 --- a/CodeLegacy/Ui/DebugFormHelper.cs +++ b/CodeLegacy/Ui/DebugFormHelper.cs @@ -1,12 +1,9 @@ using Flowframes.IO; using Flowframes.MiscUtils; -using System; using System.Collections.Generic; using System.Collections.Specialized; using System.IO; using System.Linq; -using System.Text; -using System.Threading.Tasks; using System.Windows.Forms; namespace Flowframes.Ui diff --git a/CodeLegacy/Ui/InterpolationProgress.cs b/CodeLegacy/Ui/InterpolationProgress.cs index 1473d08..c24b0bb 100644 --- a/CodeLegacy/Ui/InterpolationProgress.cs +++ b/CodeLegacy/Ui/InterpolationProgress.cs @@ -2,7 +2,6 @@ using Flowframes.MiscUtils; using System; using System.Diagnostics; -using System.Drawing; using System.IO; using System.Linq; using System.Text.RegularExpressions; diff --git a/CodeLegacy/Ui/MainUiFunctions.cs b/CodeLegacy/Ui/MainUiFunctions.cs index c4b27d8..8d00bbc 100644 --- a/CodeLegacy/Ui/MainUiFunctions.cs +++ b/CodeLegacy/Ui/MainUiFunctions.cs @@ -1,14 +1,11 @@ using Flowframes.Media; using Flowframes.IO; -using Flowframes.Magick; using Flowframes.Main; using Flowframes.Os; using System; -using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq; -using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using Flowframes.Data; diff --git a/CodeLegacy/Ui/QuickSettingsTab.cs b/CodeLegacy/Ui/QuickSettingsTab.cs index 4593795..1c7ead4 100644 --- a/CodeLegacy/Ui/QuickSettingsTab.cs +++ b/CodeLegacy/Ui/QuickSettingsTab.cs @@ -1,13 +1,4 @@ -using Flowframes.Media; -using Flowframes.IO; -using Flowframes.Magick; -using Flowframes.Main; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using System; using System.Windows.Forms; using Flowframes.MiscUtils; diff --git a/CodeLegacy/Ui/UiUtils.cs b/CodeLegacy/Ui/UiUtils.cs index 669ce24..410868f 100644 --- a/CodeLegacy/Ui/UiUtils.cs +++ b/CodeLegacy/Ui/UiUtils.cs @@ -1,6 +1,5 @@ using Flowframes.Data; using Flowframes.Forms; -using Flowframes.IO; using Flowframes.Main; using Flowframes.Os; using System; diff --git a/CodeLegacy/Utilities/ColorDataUtils.cs b/CodeLegacy/Utilities/ColorDataUtils.cs index fdd6bd0..60cce74 100644 --- a/CodeLegacy/Utilities/ColorDataUtils.cs +++ b/CodeLegacy/Utilities/ColorDataUtils.cs @@ -1,15 +1,4 @@ -using Flowframes.Data; -using Flowframes.IO; -using System; -using System.Collections.Generic; -using System.Globalization; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; - -namespace Flowframes.Utilities +namespace Flowframes.Utilities { class ColorDataUtils {