Skip to content

Commit aa217ad

Browse files
committed
Remove dead code
1 parent 818cfcb commit aa217ad

File tree

6 files changed

+2
-28
lines changed

6 files changed

+2
-28
lines changed

MCLauncher/App.xaml.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Configuration;
4-
using System.Data;
5-
using System.Diagnostics;
6-
using System.Linq;
7-
using System.Threading.Tasks;
1+
using System.Diagnostics;
82
using System.Windows;
93

104
namespace MCLauncher {

MCLauncher/MainWindow.xaml.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
using Newtonsoft.Json;
22
using System;
3-
using System.Collections.Generic;
43
using System.Threading.Tasks;
54
using System.Windows;
65
using System.Windows.Input;
7-
using Microsoft.Win32;
86

97
namespace MCLauncher {
108
using System.ComponentModel;
@@ -375,13 +373,9 @@ public interface ICommonVersionCommands {
375373

376374
}
377375

378-
public class Versions : List<Object> {
379-
}
380-
381376
public class Version : NotifyPropertyChangedBase {
382377
public static readonly string UNKNOWN_UUID = "UNKNOWN";
383378

384-
public Version() { }
385379
public Version(string uuid, string name, bool isBeta, ICommonVersionCommands commands) {
386380
this.UUID = uuid;
387381
this.Name = name;

MCLauncher/Preferences.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Threading.Tasks;
6-
7-
namespace MCLauncher {
1+
namespace MCLauncher {
82
public class Preferences {
93
public bool ShowBetas { get; set; } = true;
104

MCLauncher/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System.Reflection;
2-
using System.Resources;
3-
using System.Runtime.CompilerServices;
42
using System.Runtime.InteropServices;
53
using System.Windows;
64

MCLauncher/VersionList.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
using System.IO;
66
using System.Linq;
77
using System.Net.Http;
8-
using System.Text;
98
using System.Threading.Tasks;
10-
using System.Windows.Threading;
119

1210
namespace MCLauncher {
1311
class VersionList : ObservableCollection<WPFDataTypes.Version> {

MCLauncher/WUTokenHelper.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
42
using System.Runtime.InteropServices;
5-
using System.Text;
6-
using System.Threading.Tasks;
73

84
namespace MCLauncher {
95
class WUTokenHelper {

0 commit comments

Comments
 (0)