Return instances of ESValue without conversion to ESValue,

i.e. without calling ESLoader.normalizeObject().
This commit is contained in:
hns 2001-12-13 11:45:46 +00:00
parent d306e6fa18
commit ad1c5fbb60

View file

@ -64,7 +64,8 @@ public class ESMapWrapper extends ESWrapper {
return new ESString ((String) val); return new ESString ((String) val);
else if (val instanceof INode) else if (val instanceof INode)
return reval.getNodeWrapper ((INode) val); return reval.getNodeWrapper ((INode) val);
else if (val instanceof ESValue)
return (ESValue) val;
return ESLoader.normalizeValue(val, evaluator); return ESLoader.normalizeValue(val, evaluator);
} }