Skip to content

Commit e557996

Browse files
committed
remove uneeded code
1 parent e0c7789 commit e557996

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/HttpContextExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public static APIGatewayHttpApiV2ProxyRequest ToApiGatewayHttpV2Request(
6565

6666
if (_httpRequestUtility.IsBinaryContent(request.ContentType))
6767
{
68-
httpApiV2ProxyRequest.Body = Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(httpApiV2ProxyRequest.Body));
68+
httpApiV2ProxyRequest.Body = Convert.ToBase64String(Encoding.UTF8.GetBytes(httpApiV2ProxyRequest.Body));
6969
httpApiV2ProxyRequest.IsBase64Encoded = true;
7070
}
7171

0 commit comments

Comments
 (0)