Issue-ID: CCSDK-3480
Empty variables should be allowed, else they will not be
found in MDSAL at a later time. Current RestapiCallNode removes
them.
Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com>
Change-Id: I22167fa9dbdef37fa70dc42c03799a05d5c38705
String var1 = template.substring(i1 + 2, i2);
String value1 = format == Format.XML ? XmlJsonUtil.getXml(mm, var1) : XmlJsonUtil.getJson(mm, var1);
- if (value1 == null || value1.trim().length() == 0) {
+ if (value1 == null) {
// delete the whole element (line)
int i3 = template.lastIndexOf('\n', i1);
if (i3 < 0) {