You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by ms...@apache.org on 2007/04/17 19:45:15 UTC

svn commit: r529685 - /incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/CompensateActivity.java

Author: mszefler
Date: Tue Apr 17 10:45:14 2007
New Revision: 529685

URL: http://svn.apache.org/viewvc?view=rev&rev=529685
Log:
Attribute change in final draft scope attribute is now "target"

Modified:
    incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/CompensateActivity.java

Modified: incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/CompensateActivity.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/CompensateActivity.java?view=diff&rev=529685&r1=529684&r2=529685
==============================================================================
--- incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/CompensateActivity.java (original)
+++ incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/CompensateActivity.java Tue Apr 17 10:45:14 2007
@@ -36,7 +36,7 @@
      * @return scope compensated by this activity
      */
     public String getScopeToCompensate() {
-        return getAttribute("scope", null);
+        return getAttribute("target", getAttribute("scope", null));
     }
 
 }