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 2006/11/01 00:24:08 UTC

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

Author: mszefler
Date: Tue Oct 31 15:24:08 2006
New Revision: 469703

URL: http://svn.apache.org/viewvc?view=rev&rev=469703
Log:
Fixed problem where terminated scopes were not completing.

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

Modified: incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/Scope.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/Scope.java?view=diff&rev=469703&r1=469702&r2=469703
==============================================================================
--- incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/Scope.java (original)
+++ incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/bom/Scope.java Tue Oct 31 15:24:08 2006
@@ -132,7 +132,7 @@
         BpelObject eventHandlers = getFirstChild(Bpel20QNames.EVENTHANDLERS);
         if (eventHandlers == null)
             return Collections.emptyList();
-        return getChildren(OnAlarm.class);
+        return eventHandlers.getChildren(OnAlarm.class);
     }
 
     /**