Skip to content

Commit

Permalink
Update comment in sort algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane32 committed May 7, 2024
1 parent a6bb4de commit 9891adb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion QRCoder/QRCodeGenerator.Polynom.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ public void Sort(Func<PolynomItem, PolynomItem, int> comparer)
{
if (comparer == null) throw new ArgumentNullException(nameof(comparer));

// Assuming you have a list or array to sort within your class
var items = _polyItems;
if (items == null || _length <= 1)
{
Expand Down

0 comments on commit 9891adb

Please sign in to comment.