Skip to content

Commit

Permalink
addressing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Afischbacher committed Feb 24, 2024
1 parent 0683dce commit e004243
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Nhl.Api.Domain/Models/Player/PlayerProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public class PlayerProfile
/// <summary>
/// Full name of the NHL player
/// </summary>
public string FullName => $"{FirstName.Default} {LastName.Default}";
public string FullName => $"{FirstName?.Default} {LastName?.Default}" ?? ;

Check failure on line 265 in Nhl.Api.Domain/Models/Player/PlayerProfile.cs

View workflow job for this annotation

GitHub Actions / build

Invalid expression term ';'

Check failure on line 265 in Nhl.Api.Domain/Models/Player/PlayerProfile.cs

View workflow job for this annotation

GitHub Actions / build

Invalid expression term ';'

Check failure on line 265 in Nhl.Api.Domain/Models/Player/PlayerProfile.cs

View workflow job for this annotation

GitHub Actions / build

Invalid expression term ';'

Check failure on line 265 in Nhl.Api.Domain/Models/Player/PlayerProfile.cs

View workflow job for this annotation

GitHub Actions / build

Invalid expression term ';'

Check failure on line 265 in Nhl.Api.Domain/Models/Player/PlayerProfile.cs

View workflow job for this annotation

GitHub Actions / build

Invalid expression term ';'

Check failure on line 265 in Nhl.Api.Domain/Models/Player/PlayerProfile.cs

View workflow job for this annotation

GitHub Actions / build

Invalid expression term ';'
}


Expand Down
1 change: 0 additions & 1 deletion Nhl.Api.Tests/StatisticsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using Nhl.Api.Models.Season;
using System.Collections.Concurrent;
using System.Linq;
using System.Text.Json;

namespace Nhl.Api.Tests;

Expand Down

0 comments on commit e004243

Please sign in to comment.