From bba7b347a6a94e37d2bb338fee3f26847195002d Mon Sep 17 00:00:00 2001 From: mat1jaczyyy Date: Mon, 17 Aug 2020 16:46:12 +0200 Subject: [PATCH] Remove unnecessary usings --- Apollo/Binary/Encoder.cs | 2 -- Apollo/Devices/Delay.cs | 2 -- Apollo/Devices/Hold.cs | 1 - Apollo/Devices/Layer.cs | 1 - Apollo/Devices/Loop.cs | 1 - Apollo/Devices/Tone.cs | 1 - Apollo/Elements/Track.cs | 2 -- Apollo/Rendering/Screen.cs | 1 - 8 files changed, 11 deletions(-) diff --git a/Apollo/Binary/Encoder.cs b/Apollo/Binary/Encoder.cs index b9c460ac..7c81f977 100644 --- a/Apollo/Binary/Encoder.cs +++ b/Apollo/Binary/Encoder.cs @@ -5,8 +5,6 @@ using System.Linq; using System.Reflection; -using Microsoft.CSharp.RuntimeBinder; - using Apollo.Components; using Apollo.Core; using Apollo.Devices; diff --git a/Apollo/Devices/Delay.cs b/Apollo/Devices/Delay.cs index 4a4a85d1..a17e40e3 100644 --- a/Apollo/Devices/Delay.cs +++ b/Apollo/Devices/Delay.cs @@ -1,10 +1,8 @@ using System.Collections.Generic; -using System.Linq; using System.IO; using Apollo.DeviceViewers; using Apollo.Elements; -using Apollo.Helpers; using Apollo.Rendering; using Apollo.Structures; using Apollo.Undo; diff --git a/Apollo/Devices/Hold.cs b/Apollo/Devices/Hold.cs index f738e000..f4f8c567 100644 --- a/Apollo/Devices/Hold.cs +++ b/Apollo/Devices/Hold.cs @@ -5,7 +5,6 @@ using Apollo.DeviceViewers; using Apollo.Elements; -using Apollo.Helpers; using Apollo.Rendering; using Apollo.Structures; using Apollo.Undo; diff --git a/Apollo/Devices/Layer.cs b/Apollo/Devices/Layer.cs index 575a26f3..c979b953 100644 --- a/Apollo/Devices/Layer.cs +++ b/Apollo/Devices/Layer.cs @@ -1,6 +1,5 @@ using System.Collections.Generic; using System.IO; -using System.Linq; using Apollo.DeviceViewers; using Apollo.Elements; diff --git a/Apollo/Devices/Loop.cs b/Apollo/Devices/Loop.cs index a5a0c26e..1210794d 100644 --- a/Apollo/Devices/Loop.cs +++ b/Apollo/Devices/Loop.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; diff --git a/Apollo/Devices/Tone.cs b/Apollo/Devices/Tone.cs index 86af8c21..81a0ad76 100644 --- a/Apollo/Devices/Tone.cs +++ b/Apollo/Devices/Tone.cs @@ -1,6 +1,5 @@ using System.Collections.Generic; using System.IO; -using System.Linq; using Apollo.DeviceViewers; using Apollo.Elements; diff --git a/Apollo/Elements/Track.cs b/Apollo/Elements/Track.cs index 80f769d6..2b34f98d 100644 --- a/Apollo/Elements/Track.cs +++ b/Apollo/Elements/Track.cs @@ -1,12 +1,10 @@ using System.Collections.Generic; -using System.IO; using Apollo.Core; using Apollo.Devices; using Apollo.Selection; using Apollo.Structures; using Apollo.Rendering; -using Apollo.Undo; using Apollo.Viewers; using Apollo.Windows; diff --git a/Apollo/Rendering/Screen.cs b/Apollo/Rendering/Screen.cs index 2cc1832a..30cbba62 100644 --- a/Apollo/Rendering/Screen.cs +++ b/Apollo/Rendering/Screen.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Linq; using Apollo.Enums; using Apollo.Structures;