Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Mar 13, 2024
1 parent c83a6a5 commit 1c16dfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Foundatio.AWS/Extensions/Extensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text.RegularExpressions;
Expand All @@ -20,7 +20,7 @@ internal static FileSpec ToFileInfo(this S3Object blob)
return null;

// Skip directories
if (blob.Key is not null&& blob.Size is 0 && blob.Key.EndsWith("/"))
if (blob.Key is not null && blob.Size is 0 && blob.Key.EndsWith("/"))
return null;

return new FileSpec
Expand Down

0 comments on commit 1c16dfe

Please sign in to comment.