Skip to content

Commit 583dcbf

Browse files
tomas-sexeniantomas-sexenian
authored andcommitted
Remove the ; at the end of httpclient variable (#815)
(cherry picked from commit 9e01b3a)
1 parent 0efc37d commit 583dcbf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ String getHeaderTemplate(String name, String fileName, String mimeType){
776776
return "Content-Disposition: form-data; name=\""+ name + "\"; filename=\""+ fileName + "\"\r\n" + "Content-Type: " + mimeType + "\r\n\r\n";
777777
}
778778
String getFormDataTemplate(String varName, String value){
779-
return "\r\n--" + boundary + "\r\nContent-Disposition: form-data; name=\"" + varName + "\";\r\n\r\n" + value;
779+
return "\r\n--" + boundary + "\r\nContent-Disposition: form-data; name=\"" + varName + "\"\r\n\r\n" + value;
780780
}
781781
}
782782

0 commit comments

Comments
 (0)