Skip to content

Commit

Permalink
chore: remove unused using
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyupe committed Oct 31, 2024
1 parent e2314f5 commit ad61b8a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion Cafe.Matcha/Models/ConfigData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

namespace Cafe.Matcha.Models
{
using System;
using System.Collections.ObjectModel;
using Cafe.Matcha.Constant;
using Cafe.Matcha.Utils;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
namespace Cafe.Matcha.Network.Structures
{
using System.IO;
using System.Windows.Markup;

/// <summary>
/// Represents market board purchase information. This message is sent from the
Expand Down
11 changes: 0 additions & 11 deletions Cafe.Matcha/Views/MainControl.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ namespace Cafe.Matcha.Views
using Cafe.Matcha.Constant;
using Cafe.Matcha.DTO;
using Cafe.Matcha.Network;
using Cafe.Matcha.Network.Universalis;
using Cafe.Matcha.Utils;
using Microsoft.Win32;
using RateLimiting;
Expand Down Expand Up @@ -95,9 +94,6 @@ private async void Init()
network.OnException += LogException;
network.OnReceiveEvent += Network_onReceiveEvent;

#if DEBUG
Client.UniversalisProcessor.Log += OnUniversalisLog;
#endif

ParsePlugin.Init(ffxivPlugin, network);

Expand All @@ -115,13 +111,6 @@ private async void Init()
ParsePlugin.Instance.Start();
}

#if DEBUG
private void OnUniversalisLog(object sender, string e)
{
Utils.Log.Info(LogType.Universalis, e);
}
#endif

private void FateNode_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == "IsChecked")
Expand Down

0 comments on commit ad61b8a

Please sign in to comment.