Skip to content

Commit d54d8bd

Browse files
Revert "Revert "Remove the ; at the end of httpclient variable""
This reverts commit 56dbbe8.
1 parent 56dbbe8 commit d54d8bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/com/genexus/internet/GXHttpClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ String getHeaderTemplate(String name, String fileName, String mimeType){
792792
}
793793
String getFormDataTemplate(String varName, String value){
794794
String contentType = getContentTypeFromString(value);
795-
return "\r\n--" + boundary + "\r\nContent-Disposition: form-data; name=\"" + varName + "\";\r\n" + ((contentType != null)? "Content-Type: " + contentType + "\r\n" : "") + "\r\n" + value;
795+
return "\r\n--" + boundary + "\r\nContent-Disposition: form-data; name=\"" + varName + "\"\r\n" + ((contentType != null)? "Content-Type: " + contentType + "\r\n" : "") + "\r\n" + value;
796796
}
797797

798798
private String getContentTypeFromString(String value){

0 commit comments

Comments
 (0)