Author: mriou
Date: Thu Jul 26 17:15:42 2007
New Revision: 560039
URL: http://svn.apache.org/viewvc?view=rev&rev=560039
Log:
ODE-158 Rich Taylor's patch to fix assigns with variable / part and no query.
Modified:
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/AssignGenerator.java
Modified:
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/AssignGenerator.java
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/AssignGenerator.java?view=diff&rev=560039&r1=560038&r2=560039
==============================================================================
---
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/AssignGenerator.java
(original)
+++
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/AssignGenerator.java
Thu Jul 26 17:15:42 2007
@@ -227,7 +227,7 @@
vref.variable = _context.resolveVariable(vv.getVariable());
if (to.getAsVariableVal().getPart() != null) {
vref.part = _context.resolvePart(vref.variable,
vv.getPart());
- if (vv.getLocation() != null)
+ if (vv.getLocation() != null &&
vv.getLocation().getExpression() != null)
vref.location = _context.compileExpr(vv.getLocation());
}
// TODO: check for irrelevant properties.