Skip to content

Commit

Permalink
delete unused InvariantCompareTo() & usings
Browse files Browse the repository at this point in the history
  • Loading branch information
gbirchmeier committed Jan 19, 2024
1 parent 7ed7ffc commit bcaaad9
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 10 deletions.
1 change: 0 additions & 1 deletion QuickFIXn/Fields/Converters/DateTimeConverter.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Collections.Generic;
using System.Text;
using System.Globalization;

namespace QuickFix.Fields.Converters
Expand Down
1 change: 0 additions & 1 deletion QuickFIXn/Message/Message.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System.Text.RegularExpressions;
using System.Text.Json;
using System.Collections.Generic;
using QuickFix.Util;

namespace QuickFix
{
Expand Down
1 change: 0 additions & 1 deletion QuickFIXn/Session.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Threading;
using QuickFix.Fields;
using QuickFix.Fields.Converters;
using QuickFix.Util;

namespace QuickFix
{
Expand Down
5 changes: 1 addition & 4 deletions QuickFIXn/Util/StringUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ public static string FixSlashes(string s) {
? s.Replace('/', '\\')
: s.Replace('\\', '/');
}

public static int InvariantCompareTo(string strA, string strB) {
return string.Compare(strA, strB, StringComparison.InvariantCulture);
}
}
}

3 changes: 0 additions & 3 deletions UnitTests/Util/UtcDateTimeSerializerTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
using QuickFix.Util;

Expand Down

0 comments on commit bcaaad9

Please sign in to comment.