Skip to content

Commit 9d6a570

Browse files
committed
Format Style Fixes
1 parent 5b93470 commit 9d6a570

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Libraries/SPTarkov.Server.Core/Extensions/ProfileExtensions.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -332,8 +332,6 @@ public static bool ProfileMeetsTraderLoyaltyLevelToBuyOffer(this PmcData pmcData
332332
/// <returns>Hashset of Trader ids</returns>
333333
public static HashSet<MongoId> GetLockedTraderIds(this PmcData pmcData)
334334
{
335-
return pmcData.TradersInfo?
336-
.Where(trader => trader.Value.Unlocked == false)
337-
.Select(t => t.Key).ToHashSet() ?? [];
335+
return pmcData.TradersInfo?.Where(trader => trader.Value.Unlocked == false).Select(t => t.Key).ToHashSet() ?? [];
338336
}
339337
}

0 commit comments

Comments
 (0)