Author: mriou
Date: Fri Sep 5 15:03:36 2008
New Revision: 692563
URL: http://svn.apache.org/viewvc?rev=692563&view=rev
Log:
Small bug on attributes with : but no ns
Modified:
ode/branches/APACHE_ODE_1.X/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java
Modified:
ode/branches/APACHE_ODE_1.X/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java?rev=692563&r1=692562&r2=692563&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java
(original)
+++
ode/branches/APACHE_ODE_1.X/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java
Fri Sep 5 15:03:36 2008
@@ -492,7 +492,8 @@
if (colonIdx > 0) {
String prefix = attr.getValue().substring(0, colonIdx);
String attrValNs = src.lookupPrefix(prefix);
- replacement.setAttributeNS(DOMUtils.NS_URI_XMLNS,
"xmlns:"+ prefix, attrValNs);
+ if (attrValNs != null)
+ replacement.setAttributeNS(DOMUtils.NS_URI_XMLNS,
"xmlns:"+ prefix, attrValNs);
}
}
}