Skip to content

Commit 9ea7553

Browse files
committed
refactor
1 parent c9fc90e commit 9ea7553

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/TableStorage.Abstractions.POCO/PocoTableStore.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,8 +424,7 @@ public async Task InsertAsync(T record)
424424
/// <exception cref="ArgumentNullException">record</exception>
425425
public async Task InsertOrReplaceAsync(T record)
426426
{
427-
if (record == null)
428-
throw new ArgumentNullException(nameof(record));
427+
if (record == null) throw new ArgumentNullException(nameof(record));
429428

430429
var entity = CreateEntity(record);
431430

0 commit comments

Comments
 (0)