Skip to content

Commit eee045b

Browse files
committed
Code cleanup
1 parent 59128d6 commit eee045b

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

SoundCloudDownloader.Core/Downloading/FileNameTemplate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
2-
using SoundCloudExplode.Track;
32
using SoundCloudDownloader.Core.Utils;
3+
using SoundCloudExplode.Track;
44

55
namespace SoundCloudDownloader.Core.Downloading;
66

SoundCloudDownloader.Core/Resolving/QueryResolver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System;
2+
using System.Collections.Generic;
23
using System.Linq;
34
using System.Threading;
45
using System.Threading.Tasks;
5-
using System.Collections.Generic;
66
using Gress;
77
using SoundCloudExplode;
88
using SoundCloudExplode.Track;

SoundCloudDownloader/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
using System.Reflection;
33
using System.Windows;
44
using System.Windows.Media;
5-
using MaterialDesignThemes.Wpf;
65
using System.Windows.Threading;
6+
using MaterialDesignThemes.Wpf;
77
using SoundCloudDownloader.Utils;
88

99
namespace SoundCloudDownloader;

SoundCloudDownloader/SoundCloudDownloader.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
<PackageReference Include="SoundCloudExplode" Version="1.4.2" />
2222
<PackageReference Include="Stylet" Version="1.3.6" />
2323
<PackageReference Include="TagLibSharp" Version="2.3.0" />
24-
<PackageReference Include="Tyrrrz.Extensions" Version="1.6.5" />
2524
</ItemGroup>
2625

2726
<ItemGroup>

SoundCloudDownloader/ViewModels/Components/DashboardViewModel.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
using System.Threading.Tasks;
55
using Gress;
66
using Gress.Completable;
7-
using Stylet;
8-
using SoundCloudDownloader.Utils;
9-
using SoundCloudDownloader.Services;
10-
using SoundCloudDownloader.Core.Tagging;
11-
using SoundCloudDownloader.Core.Resolving;
127
using SoundCloudDownloader.Core.Downloading;
8+
using SoundCloudDownloader.Core.Resolving;
9+
using SoundCloudDownloader.Core.Tagging;
10+
using SoundCloudDownloader.Services;
11+
using SoundCloudDownloader.Utils;
1312
using SoundCloudDownloader.ViewModels.Dialogs;
1413
using SoundCloudDownloader.ViewModels.Framework;
1514
using SoundCloudExplode.Exceptions;
15+
using Stylet;
1616

1717
namespace SoundCloudDownloader.ViewModels.Components;
1818

SoundCloudDownloader/ViewModels/RootViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System;
22
using System.Threading.Tasks;
33
using MaterialDesignThemes.Wpf;
4-
using Stylet;
54
using SoundCloudDownloader.Services;
65
using SoundCloudDownloader.ViewModels.Components;
76
using SoundCloudDownloader.ViewModels.Framework;
7+
using Stylet;
88

99
namespace SoundCloudDownloader.ViewModels;
1010

0 commit comments

Comments
 (0)