Skip to content

Commit

Permalink
Remove extra semicolon (#12987)
Browse files Browse the repository at this point in the history
Co-authored-by: Hisham Bin Ateya <[email protected]>
  • Loading branch information
hyzx86 and hishamco authored Dec 24, 2022
1 parent 9fb9eed commit cf46fd3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ public static string[] GetAttachedFileNames(this MediaField mediaField)
{
var filenames = mediaField.Content["AttachedFileNames"] as JArray;

return filenames != null ? filenames.ToObject<string[]>() : Array.Empty<string>(); ;
return filenames != null
? filenames.ToObject<string[]>()
: Array.Empty<string>();
}

/// <summary>
Expand Down

0 comments on commit cf46fd3

Please sign in to comment.