From 21217cc4ae2380179378809f7919785858c5ee4b Mon Sep 17 00:00:00 2001 From: Vladimir Alyamkin Date: Thu, 26 Aug 2021 19:34:12 +0300 Subject: [PATCH] Fix clang-format (cherry picked from commit 9e04e7caaec797f33f7cbb35fe3fb6335fd2aaf5) --- Source/VaRest/Private/VaRestRequestJSON.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/VaRest/Private/VaRestRequestJSON.cpp b/Source/VaRest/Private/VaRestRequestJSON.cpp index ab998d2d..cbb68f50 100644 --- a/Source/VaRest/Private/VaRestRequestJSON.cpp +++ b/Source/VaRest/Private/VaRestRequestJSON.cpp @@ -421,7 +421,7 @@ void UVaRestRequestJSON::ProcessRequest() HttpRequest->SetHeader(TEXT("Content-Type"), TEXT("application/json")); // Body is ignored for get requests, so we shouldn't place json into it even if it's empty - if(RequestVerb == EVaRestRequestVerb::GET) + if (RequestVerb == EVaRestRequestVerb::GET) { break; }