IDEMPIERE-3472 Env.parseVariable not keeping unparseable variable / thanks to Ricardo Santana (ralexsander)
This commit is contained in:
parent
14faeeec5c
commit
f74f08c521
|
@ -1673,7 +1673,14 @@ public final class Env
|
||||||
outStr.append("@");
|
outStr.append("@");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (keepUnparseable)
|
||||||
|
{
|
||||||
|
outStr.append("@"+token);
|
||||||
|
if (format.length() > 0)
|
||||||
|
outStr.append("<"+format+">");
|
||||||
|
outStr.append("@");
|
||||||
|
}
|
||||||
|
|
||||||
inStr = inStr.substring(j+1, inStr.length()); // from second @
|
inStr = inStr.substring(j+1, inStr.length()); // from second @
|
||||||
i = inStr.indexOf('@');
|
i = inStr.indexOf('@');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue