Skip to content

Commit

Permalink
whitespace and style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zivmaor committed Oct 4, 2024
1 parent 1a4759e commit 631db50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1500,7 +1500,7 @@ public static async Task<Dictionary<string, List<object>>> GetUnreferencedObject

List<Dictionary<string, List<object>>> dicts = new();

if (assets.Count != 0) // A Partitioner can't be created on an empty list.
if (assets.Count > 0) // A Partitioner can't be created on an empty list.
{
var assetsPart = Partitioner.Create(0, assets.Count);

Expand Down

0 comments on commit 631db50

Please sign in to comment.