We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9fc90e commit 9ea7553Copy full SHA for 9ea7553
src/TableStorage.Abstractions.POCO/PocoTableStore.cs
@@ -424,8 +424,7 @@ public async Task InsertAsync(T record)
424
/// <exception cref="ArgumentNullException">record</exception>
425
public async Task InsertOrReplaceAsync(T record)
426
{
427
- if (record == null)
428
- throw new ArgumentNullException(nameof(record));
+ if (record == null) throw new ArgumentNullException(nameof(record));
429
430
var entity = CreateEntity(record);
431
0 commit comments