mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-05 19:09:11 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
1b07d221ea
@ -4,4 +4,4 @@
|
||||
|
||||
## Other code changes
|
||||
|
||||
* no changes
|
||||
* no changes
|
||||
|
@ -228,7 +228,7 @@ public abstract class ParserBase {
|
||||
if (!"id".equals(e.getName())) {
|
||||
return true;
|
||||
}
|
||||
if (path.contains(".")) {
|
||||
if (path!=null && path.contains(".")) {
|
||||
return idPolicy.forInner();
|
||||
} else {
|
||||
return idPolicy.forRoot();
|
||||
|
@ -1680,7 +1680,7 @@ public class StructureMapUtilities {
|
||||
case EVALUATE:
|
||||
ExpressionNode expr = (ExpressionNode) tgt.getUserData(MAP_EXPRESSION);
|
||||
if (expr == null) {
|
||||
expr = fpe.parse(getParamStringNoNull(vars, tgt.getParameter().get(1), tgt.toString()));
|
||||
expr = fpe.parse(getParamStringNoNull(vars, tgt.getParameter().get(tgt.getParameter().size() - 1), tgt.toString()));
|
||||
tgt.setUserData(MAP_EXPRESSION, expr);
|
||||
}
|
||||
List<Base> v = fpe.evaluate(vars, null, null, tgt.getParameter().size() == 2 ? getParam(vars, tgt.getParameter().get(0)) : new BooleanType(false), expr);
|
||||
|
Loading…
x
Reference in New Issue
Block a user