Author: mszefler
Date: Fri Oct  6 09:36:16 2006
New Revision: 453667

URL: http://svn.apache.org/viewvc?view=rev&rev=453667
Log:
Fixed NPE in compileSJF introduced by rename of some methods.


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

Modified: 
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/BpelCompiler.java
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/BpelCompiler.java?view=diff&rev=453667&r1=453666&r2=453667
==============================================================================
--- 
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/BpelCompiler.java
 (original)
+++ 
incubator/ode/trunk/bpel-compiler/src/main/java/org/apache/ode/bpel/compiler/BpelCompiler.java
 Fri Oct  6 09:36:16 2006
@@ -696,7 +696,7 @@
         oscope.debugInfo = createDebugInfo(source, "suppress join failure 
scope for " + source);
         DefaultActivityGenerator.defaultExtensibilityElements(oscope, source, 
_structureStack.topActivity());
 
-        compileScope(oscope, null, new Runnable() {
+        compile(oscope, null, new Runnable() {
             public void run() {
                 oscope.activity = compileSLC(source);
                 final OCatch joinFailureCatch = new OCatch(_oprocess);


Reply via email to