changed method uppercasing into jinja template

This commit is contained in:
Aditya Mayukh Som
2024-03-24 18:54:52 +05:30
parent 8cd6879332
commit 7173c202c5

View File

@ -177,8 +177,7 @@ public class Main {
}
var templateRequestCreation = jj.Template(kTemplateRequestCreation);
result +=
templateRequestCreation.render({"method": method.name.toUpperCase()});
result += templateRequestCreation.render({"method": method.name});
// setting up query parameters
var params = uri.queryParameters;