Skip to content

Commit

Permalink
Use Array.Empty (#900)
Browse files Browse the repository at this point in the history
  • Loading branch information
martincostello authored Jan 18, 2023
1 parent 49bcb44 commit b53b6b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ internal static class AWSLambdaUtils
return new[] { value };
}

return new string[0];
return Array.Empty<string>();
};

internal static ActivityContext GetXRayParentContext()
Expand Down

0 comments on commit b53b6b9

Please sign in to comment.