Skip to content

Commit

Permalink
Remove two unnecessary values.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmed-Ghanam committed Nov 29, 2024
1 parent 4fef97b commit 0e94515
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,7 @@ public async Task<List<Sms>> GetNewNotifications()
reader.GetValue<Guid>("alternateid"),
reader.GetValue<string>("sendernumber"),
reader.GetValue<string>("mobilenumber"),
reader.GetValue<string>("body"),
reader.GetValue<string>("recipientnin"),
reader.GetValue<string>("recipientorgno"));
reader.GetValue<string>("body");

Check failure on line 107 in src/Altinn.Notifications.Persistence/Repository/SmsNotificationRepository.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

) expected

Check failure on line 107 in src/Altinn.Notifications.Persistence/Repository/SmsNotificationRepository.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

) expected

Check failure on line 107 in src/Altinn.Notifications.Persistence/Repository/SmsNotificationRepository.cs

View workflow job for this annotation

GitHub Actions / Build, test & analyze

) expected

Check failure on line 107 in src/Altinn.Notifications.Persistence/Repository/SmsNotificationRepository.cs

View workflow job for this annotation

GitHub Actions / Build, test & analyze

) expected

searchResult.Add(sms);
}
Expand Down

0 comments on commit 0e94515

Please sign in to comment.